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