diff options
Diffstat (limited to 'examples/blog/src/components')
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 2 | ||||
-rw-r--r-- | examples/blog/src/components/FollowMe.astro | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro index cc6f89ff1..80de975b1 100644 --- a/examples/blog/src/components/BaseHead.astro +++ b/examples/blog/src/components/BaseHead.astro @@ -1,5 +1,5 @@ --- -import "../styles/blog.css"; +import '../styles/blog.css'; export interface Props { title: string; diff --git a/examples/blog/src/components/FollowMe.astro b/examples/blog/src/components/FollowMe.astro index 09062281a..093391147 100644 --- a/examples/blog/src/components/FollowMe.astro +++ b/examples/blog/src/components/FollowMe.astro @@ -8,4 +8,3 @@ const { username, href } = Astro.props as Props; --- <p>Follow me <a {href} target="_blank" rel="noreferrer">@{username}</a></p> - |