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