import React, { FC } from "react"; import { Typography, Box } from "@material-ui/core"; type HeaderProps = { title: string; description: string; }; export const Header: FC = ({ title, description }) => { return ( {title} {description} ); };