UIKit/lib/components/HelloWorld.tsx
2023-08-14 15:53:46 +03:00

15 lines
236 B
TypeScript

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