client/packages/call/src/views/main/layout.tsx
Alois 413764f33e (feat): move call context to zustand
(feat): add actions, basic call page
2026-04-29 14:49:53 +02:00

12 lines
351 B
TypeScript

import Actions from "../../components/actions";
import TopBar from "../../components/top";
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<div className="w-full h-full flex flex-col bg-green-500">
<TopBar />
<div className="w-full h-full">{children}</div>
<Actions />
</div>
);
}