Display the list of family users

This commit is contained in:
2023-07-09 17:02:43 +02:00
parent 099e517688
commit addaca1b0e
11 changed files with 171 additions and 15 deletions

View File

@ -184,6 +184,8 @@ export function BaseFamilyRoute(): React.ReactElement {
flexGrow: 1,
overflow: "auto",
padding: "20px",
display: "flex",
flexDirection: "column",
}}
>
<Outlet />

View File

@ -0,0 +1,9 @@
import { Typography } from "@mui/material";
export function FamilyPageTitle(p: { title: string }): React.ReactElement {
return (
<Typography variant="h4" style={{ margin: "20px" }}>
{p.title}
</Typography>
);
}