import { PAGE_BAR_MIN_HEIGHT } from './PageHeader'; import { RightDrawerContainer } from './RightDrawerContainer'; type OwnProps = { children: JSX.Element | JSX.Element[]; }; export function PageBody({ children }: OwnProps) { return ( {children} ); }