Initial MVP for QA asset backend
This commit is contained in:
13
hy_qa_asset_backend/frontend/components/Layout.tsx
Normal file
13
hy_qa_asset_backend/frontend/components/Layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import { ReactNode } from "react";
|
||||
import Sidebar from "./Sidebar";
|
||||
|
||||
export default function Layout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<div className="min-h-screen bg-[#f5f7fa]">
|
||||
<Sidebar />
|
||||
<main className="min-h-screen px-4 py-5 md:ml-64 md:px-8 md:py-7">{children}</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user