Implement basic structure
This commit is contained in:
11
src/pages/Home.tsx
Normal file
11
src/pages/Home.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user