senal88's picture
chore: deploy web_comercial from monorepo
cfb5074 verified
raw
history blame contribute delete
421 Bytes
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>
);
}