import clsx from 'clsx'; import { ReactNode } from 'react'; import DocumentHead from 'calypso/components/data/document-head'; import Main from 'calypso/components/main'; import './style.scss'; type Props = { children: ReactNode; sidebarNavigation?: ReactNode; className?: string; title: ReactNode; wide?: boolean; withBorder?: boolean; }; export default function Layout( { children, className, title, wide = false, withBorder = false, sidebarNavigation, }: Props ) { return (
{ sidebarNavigation }
{ children }
); }