Files
IOPaint/lama_cleaner/app/src/components/Link.tsx
wq.chu 4e027f81e6 init
2021-11-15 22:21:01 +08:00

16 lines
266 B
TypeScript

import React from 'react'
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>
)
}