init
This commit is contained in:
15
lama_cleaner/app/src/components/Link.tsx
Normal file
15
lama_cleaner/app/src/components/Link.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user