mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-30 11:41:05 -05:00
ced7b2aa2c
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
import { Sidebar } from "./sidebar";
|
|
|
|
export function LayoutApp({ children }: { children: React.ReactNode }): React.JSX.Element {
|
|
return (
|
|
<div className="min-h-full">
|
|
{/* Static sidebar for desktop */}
|
|
<div className="hidden lg:fixed lg:inset-y-0 lg:flex lg:w-64 lg:flex-col">
|
|
<Sidebar />
|
|
</div>
|
|
<div className="flex flex-1 flex-col lg:pl-64">{children}</div>
|
|
</div>
|
|
);
|
|
}
|