blob: 093391147ca9873295bda8bef62b4ea405efc020 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
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>
|