import React, { ReactNode } from 'react'; import { Box } from 'folds'; import { DockedCallPanel } from '../../features/call/DockedCallPanel'; type ClientLayoutProps = { nav: ReactNode; children: ReactNode; }; export function ClientLayout({ nav, children }: ClientLayoutProps) { return ( {nav} {children} ); }