IOPaint/lama_cleaner/app/src/components/Link.tsx

16 lines
266 B
TypeScript
Raw Normal View History

2021-11-15 08:22:34 +01:00
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>
)
}