We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2c1ea commit 96d6c7cCopy full SHA for 96d6c7c
frontend/src/app/dashboard/layout.tsx
@@ -0,0 +1,11 @@
1
+import React from "react";
2
+
3
+const Layout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
4
+ return (
5
+ <div className="flex min-h-screen flex-col">
6
+ <main className="flex-1">{children}</main>
7
+ </div>
8
+ );
9
+};
10
11
+export default Layout;
frontend/src/app/dashboard/page.tsx
@@ -0,0 +1,9 @@
+"use client";
+export default function Dashboard() {
+ <>
+ <h1 className="text-3xl font-bold underline">Dashboard</h1>
+ </>
+}
0 commit comments