diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/snowpack/astro/components/BaseHead.astro | 2 | ||||
-rw-r--r-- | examples/snowpack/astro/components/MainLayout.astro | 2 | ||||
-rw-r--r-- | examples/snowpack/astro/components/index.ts | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/examples/snowpack/astro/components/BaseHead.astro b/examples/snowpack/astro/components/BaseHead.astro index b24861ca6..a96fc7327 100644 --- a/examples/snowpack/astro/components/BaseHead.astro +++ b/examples/snowpack/astro/components/BaseHead.astro @@ -35,4 +35,4 @@ export let permalink: string; <!-- Global Stylesheets --> <link rel="stylesheet" href="/css/app.css" /> -<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@400;700;900&display=swap" rel="stylesheet" />
\ No newline at end of file +<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@400;700;900&display=swap" rel="stylesheet" /> diff --git a/examples/snowpack/astro/components/MainLayout.astro b/examples/snowpack/astro/components/MainLayout.astro index 852a6636f..c9ce65f08 100644 --- a/examples/snowpack/astro/components/MainLayout.astro +++ b/examples/snowpack/astro/components/MainLayout.astro @@ -17,4 +17,4 @@ import Menu from './Menu.astro'; </section> </div> -</BaseLayout>
\ No newline at end of file +</BaseLayout> diff --git a/examples/snowpack/astro/components/index.ts b/examples/snowpack/astro/components/index.ts new file mode 100644 index 000000000..b9d3e23cb --- /dev/null +++ b/examples/snowpack/astro/components/index.ts @@ -0,0 +1 @@ +console.log('Hello world!'); |