Display the list of family users
This commit is contained in:
@ -184,6 +184,8 @@ export function BaseFamilyRoute(): React.ReactElement {
|
||||
flexGrow: 1,
|
||||
overflow: "auto",
|
||||
padding: "20px",
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
}}
|
||||
>
|
||||
<Outlet />
|
||||
|
9
geneit_app/src/widgets/FamilyPageTitle.tsx
Normal file
9
geneit_app/src/widgets/FamilyPageTitle.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user