import {ReactNode} from "react"; export interface LinkProps { children: ReactNode; href: string; target?: "_self" | "_blank" | "_parent" | "_top"; } const Link: React.FC = ({children, href, target}) => ( {children} ); export default Link;