import type { FunctionComponent } from "react"; import type { LinkProps } from "blitz"; import { Link, Routes } from "blitz"; export default function Footer() { // TODO const isDisabled = true; if (isDisabled) { // return null; } return ( ); } type Props = { href: LinkProps["href"]; name: string; }; const NavLink: FunctionComponent = ({ href, name }) => (
{name}
);