UIKit/lib/components/HelloWorld.tsx

15 lines
236 B
TypeScript
Raw Normal View History

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