Skip to content

Commit

Permalink
started stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
promatty committed Jun 8, 2024
1 parent 3881382 commit a15eda4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 1 addition & 5 deletions src/app/planner/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,5 @@ export default function PlannerLayout({
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
return <div>{children}</div>;
}
2 changes: 2 additions & 0 deletions src/app/planner/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import MainPlanner from "@/components/planner/MainPlanner";
import Participants from "@/components/planner/Participants";

export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<MainPlanner />
<Participants />
</main>
);
}
7 changes: 7 additions & 0 deletions src/components/planner/Participants.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Participants() {
return (
<div className="flex flex-row items-center justify-center">
<h1>participants:</h1>
</div>
);
}

0 comments on commit a15eda4

Please sign in to comment.