mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-22 05:42:56 +00:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
type LinkProps = React.PropsWithChildren & { href: string }
|
|
|
|
export const Link = ({ children, href }: LinkProps) => (
|
|
<a href={href} className="text-brand-dark underline break-all">
|
|
{children}
|
|
</a>
|
|
)
|