1
This commit is contained in:
15
src/app/dashboard/layout.tsx
Normal file
15
src/app/dashboard/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import Header from "./_components/header";
|
||||
|
||||
interface Props {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function DashboardLayout({children}: Props) {
|
||||
|
||||
return (
|
||||
<div className="storeai-dashboard relative min-h-screen bg-background">
|
||||
<Header/>
|
||||
<div className="relative">{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user