diff options
Diffstat (limited to 'examples/blog/src/components/FollowMe.astro')
-rw-r--r-- | examples/blog/src/components/FollowMe.astro | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/blog/src/components/FollowMe.astro b/examples/blog/src/components/FollowMe.astro deleted file mode 100644 index 093391147..000000000 --- a/examples/blog/src/components/FollowMe.astro +++ /dev/null @@ -1,10 +0,0 @@ ---- -export interface Props { - username: string; - href: string; -} - -const { username, href } = Astro.props as Props; ---- - -<p>Follow me <a {href} target="_blank" rel="noreferrer">@{username}</a></p> |