client/packages/call/src/views/main/layout.tsx
Alois 36902e340a (feat): add sonner call invite, to be replaced with dedicated popup
(feat): add fallback screen to preview page
(feat): show users call page
2026-04-29 16:42:17 +02:00

12 lines
338 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">
<TopBar />
<div className="w-full h-full">{children}</div>
<Actions />
</div>
);
}