15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { PAGE_BAR_MIN_HEIGHT } from './PageHeader';
|
|
import { RightDrawerContainer } from './RightDrawerContainer';
|
|
|
|
type OwnProps = {
|
|
children: JSX.Element | JSX.Element[];
|
|
};
|
|
|
|
export function PageBody({ children }: OwnProps) {
|
|
return (
|
|
<RightDrawerContainer topMargin={PAGE_BAR_MIN_HEIGHT + 16 + 16}>
|
|
{children}
|
|
</RightDrawerContainer>
|
|
);
|
|
}
|