1
0
Fork 0
This repository has been archived on 2025-08-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mareshq-backoffice-v1-monolith/src/components/Layout.tsx

18 lines
362 B
TypeScript

import { Sidebar } from "~/components/Sidebar";
export type LayoutProps = {
children: React.ReactNode;
};
export function Layout({ children }: LayoutProps) {
return (
<>
<Sidebar />
<main className="py-10 lg:pl-72">
<div className="px-4 sm:px-6 lg:px-8">
{children}
</div>
</main>
</>
);
}