[Front] Structuration des fichiers

This commit is contained in:
iMax 2024-12-05 19:10:01 +01:00
parent e7dbe84ea5
commit 2bd75babff
3 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,10 @@
export default function TestComponent() {
return (
<div>
<h1>Hello RedCrab </h1>
</div>
)
}

View file

@ -0,0 +1,9 @@
export default function GamePage() {
return (
<div>
<h1>Game Page</h1>
</div>
)
}

View file

@ -0,0 +1,10 @@
export default function MainPage() {
return (
<div>
<h1>Main Page</h1>
</div>
)
}