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