import type { FC } from "hono/jsx"; import type { Link } from "../../types/link"; type Props = { links: Link[]; }; const LinksSection: FC = ({ links }) => { return ( ); }; export default LinksSection;