import { Link } from 'react-router-dom'; interface TextURLProps { text: string href: string } function TextURL({ text, href }: TextURLProps) { return ( {text} ); } export default TextURL;