import { ReactNode } from "react"; import { Head } from "blitz"; type LayoutProps = { title?: string; children: ReactNode; }; const BaseLayout = ({ title, children }: LayoutProps) => { return ( <> {title || "virtual-phone"} {children} ); }; export default BaseLayout;