mirror of
https://github.com/ershisan99/podcaster.git
synced 2026-01-26 05:12:08 +00:00
chore: set up routing with mock pages
This commit is contained in:
3
src/pages/episode.tsx
Normal file
3
src/pages/episode.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export function Episode() {
|
||||
return <h1>Episode page</h1>;
|
||||
}
|
||||
3
src/pages/home.tsx
Normal file
3
src/pages/home.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export function Home() {
|
||||
return <h1>Home page</h1>;
|
||||
}
|
||||
3
src/pages/podcast.tsx
Normal file
3
src/pages/podcast.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export function Podcast() {
|
||||
return <h1>Podcast page</h1>;
|
||||
}
|
||||
Reference in New Issue
Block a user