10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import { Typography } from "@mui/material";
|
|
|
|
export function FamilyPageTitle(p: { title: string }): React.ReactElement {
|
|
return (
|
|
<Typography variant="h4" style={{ margin: "20px" }}>
|
|
{p.title}
|
|
</Typography>
|
|
);
|
|
}
|