12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import { type ReactElement } from 'react';
|
|
import { Card, CardContent, CardHeader } from '@mui/material';
|
|
|
|
export function Home(): ReactElement {
|
|
return (
|
|
<Card>
|
|
<CardHeader title='Home'></CardHeader>
|
|
<CardContent>Hello, others</CardContent>
|
|
</Card>
|
|
);
|
|
}
|