import { FC } from "react"; import styles from "./Link.module.scss"; const Link: FC<{ href: string, title: string }> = ({ href, title }) => ( {title} ); export default Link;