UIKit/lib/components/HelloWorld.tsx

15 lines
244 B
TypeScript
Raw Normal View History

2023-08-14 12:25:19 +00:00
import { Typography } from "@mui/material";
interface Props {
name?: string;
}
export default function HelloWorld({ name }: Props) {
name ??= "world";
return (
<Typography variant="h2">Hello {name}</Typography>
);
}