import { Toolbar } from '@konobangu/cms/components/toolbar'; import type { ReactNode } from 'react'; type LegalLayoutProps = { children: ReactNode; }; const LegalLayout = ({ children }: LegalLayoutProps) => ( <> {children} ); export default LegalLayout;