import React from 'react'; type Props = { children: string; href: string; } export const Link: React.FC = ({children, href}) => { return( <> {children} ) }