chore: set up routing with mock pages

This commit is contained in:
2024-04-18 15:26:02 +02:00
parent 6d8ec83bcb
commit 4671b5e707
7 changed files with 68 additions and 2 deletions

3
src/pages/episode.tsx Normal file
View File

@@ -0,0 +1,3 @@
export function Episode() {
return <h1>Episode page</h1>;
}

3
src/pages/home.tsx Normal file
View File

@@ -0,0 +1,3 @@
export function Home() {
return <h1>Home page</h1>;
}

3
src/pages/podcast.tsx Normal file
View File

@@ -0,0 +1,3 @@
export function Podcast() {
return <h1>Podcast page</h1>;
}