interface Props { text: string; url: string; } const Link: React.FC = ({ text, url }: Props) => { return ( {text} ); }; export default Link;