comunicconsole/src/ui/widgets/PageTitle.tsx

18 lines
292 B
TypeScript

import { Paper, Typography } from "@material-ui/core";
/**
* Page title widget
*
* @author Pierre Hubert
*/
export function PageTitle(p: { name: string }) {
return (
<Typography
variant="h4"
style={{ marginBottom: "50px", color: "white" }}
>
{p.name}
</Typography>
);
}