import React, { FC } from "react"; import Typography from "@material-ui/core/Typography"; import { makeStyles } from "@material-ui/core/styles"; import Container from "@material-ui/core/Container"; import Link from "@material-ui/core/Link"; interface IProps { brand: string; text: string; } const copyParams: IProps = { brand: "BugBuster", text: "Made with 🔥" }; const Copyright: FC = ({ brand, text }) => { return ( {"© "} {brand} {" "} {new Date().getFullYear()} {`. All Rights Reserved. ${text}`} ); }; const useStyles = makeStyles(theme => ({ footer: { padding: theme.spacing(3, 2), marginTop: "auto", backgroundColor: theme.palette.type === "light" ? theme.palette.grey[200] : theme.palette.grey[800] } })); export default function Footer() { const classes = useStyles(); return ( ); }