Skip to content

Commit

Permalink
add event page
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanNeiverth committed Aug 26, 2024
1 parent 568bc2b commit b5e88b8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export default function Home() {

</main>
);
}
}
11 changes: 11 additions & 0 deletions src/pages/event/[id].tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
interface EventProps {
event:{
id:string
}
}

export default function Events(event:EventProps) {
return (
<h1>ID:</h1>
);
}
5 changes: 5 additions & 0 deletions src/pages/events.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Events() {
return (
<h1>Events</h1>
);
}

0 comments on commit b5e88b8

Please sign in to comment.