mirror of
https://gitlab.com/comunic/comunicconsole
synced 2025-07-07 18:42:49 +00:00
Can update admin general settings
This commit is contained in:
17
src/ui/widgets/PageTitle.tsx
Normal file
17
src/ui/widgets/PageTitle.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user