zhou20120904's picture
Upload 48 files
a62d4c5 verified
raw
history blame contribute delete
239 Bytes
interface LinkProps {
children: string
href: string
}
export default function Link(props: LinkProps) {
const { children, href } = props
return (
<a href={href} className="font-black underline">
{children}
</a>
)
}