repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| #2 | import { Topbar } from "./Topbar"; |
| #3 |
| #4 | export function Layout({ children }: { children: React.ReactNode }) { |
| #5 | return ( |
| #6 | <div className="flex h-screen overflow-hidden"> |
| #7 | <Sidebar /> |
| #8 | <div className="flex-1 flex flex-col min-w-0"> |
| #9 | <Topbar /> |
| #10 | <main className="flex-1 overflow-y-auto">{children}</main> |
| #11 | </div> |
| #12 | </div> |
| #13 | ); |
| #14 | } |
| #15 |