import { Typography } from "@mui/material";
interface Props {
name?: string;
}
export function HelloWorld({ name }: Props) {
name ??= "world";
return (
<Typography variant="h2">Hello {name}</Typography>
);