mirror of
https://gitlab.com/comunic/comunicconsole
synced 2025-04-20 03:30:54 +00:00
18 lines
292 B
TypeScript
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>
|
|
);
|
|
}
|