Implement basic structure

This commit is contained in:
Wouter van Veelen
2025-11-24 00:37:55 +01:00
parent 66dd292e00
commit 18bea1e786
5 changed files with 72 additions and 14 deletions

5
src/pages/About.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { Fragment, type ReactElement } from 'react';
export function About(): ReactElement {
return <Fragment>Hello, About.</Fragment>;
}

11
src/pages/Home.tsx Normal file
View 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>
);
}