LinHanjiang's picture
Upload 259 files
74aacd5
raw
history blame contribute delete
211 Bytes
import React from 'react'
interface LinkProps {
children: string
href: string
}
export default function Link(props: LinkProps) {
const { children, href } = props
return <a href={href}>{children}</a>
}