mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-23 22:50:35 -06:00
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>
|
|
);
|
|
}
|