import React from 'react'; import Typography from '@material-ui/core/Typography'; import Link from '@material-ui/core/Link'; export default function Footer() { return (
); } type FooterButtonProps = { label: string; href: string; isEnd?: boolean; }; function FooterButton(props: FooterButtonProps) { const { label, href, isEnd } = props; return (
{label}
); }