GeneIT/geneit_app/src/widgets/FamilyPageTitle.tsx

10 lines
230 B
TypeScript
Raw Normal View History

2023-07-09 15:02:43 +00:00
import { Typography } from "@mui/material";
export function FamilyPageTitle(p: { title: string }): React.ReactElement {
return (
<Typography variant="h4" style={{ margin: "20px" }}>
{p.title}
</Typography>
);
}