Can update admin general settings

This commit is contained in:
2021-05-13 17:17:22 +02:00
parent 6dde0f40c4
commit 163ff8471a
3 changed files with 28 additions and 5 deletions

View File

@ -0,0 +1,17 @@
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>
);
}