import { Paper, Typography } from "@material-ui/core"; /** * Page title widget * * @author Pierre Hubert */ export function PageTitle(p: { name: string }) { return ( {p.name} ); }