import { Alert, Card } from "@mui/material"; import { PropsWithChildren } from "react"; export function FamilyCard( p: PropsWithChildren<{ error?: string; success?: string }> ): React.ReactElement { return ( {p.error && {p.error}} {p.success && {p.success}} {p.children} ); }