Moved files

This commit is contained in:
Patrick Alvin Alcala 2025-08-28 16:54:24 +08:00
parent 0e6ed89a08
commit 39d01e7a55
12 changed files with 482 additions and 0 deletions

View file

@ -0,0 +1,14 @@
interface Props {
to: string
children?: any
}
export default (props: Props) => {
return (
<>
<a href={props.to} aria-label={`Go to ${props.to}`}>
{props.children}
</a>
</>
)
}