Spaces:
Runtime error
Runtime error
| import React from "react"; | |
| import { Sidebar } from "./Sidebar"; | |
| import { Topbar } from "./Topbar"; | |
| interface AppLayoutProps { | |
| children: React.ReactNode; | |
| } | |
| export function AppLayout({ children }: AppLayoutProps) { | |
| return ( | |
| <div className="app-container"> | |
| <Sidebar /> | |
| <div className="app-main"> | |
| <Topbar /> | |
| <main className="app-content">{children}</main> | |
| </div> | |
| </div> | |
| ); | |
| } | |