Files
WebHome/src/pages/Home.tsx
2025-11-24 00:37:55 +01:00

12 lines
310 B
TypeScript

import React, { 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>
);
}