import { type FC } from "react"; type Props = { title: string; links: string[]; }; const FooterLinkColumn: FC = ({ title, links }) => { return (

{title}

); }; export default FooterLinkColumn;