// @flow import * as React from "react"; import { Page, Grid } from "../"; type Props = {| +children?: React.Node, +header?: React.Node, +sidebar?: React.Node, |}; function PageContentWithSidebar({ children, header, sidebar, }: Props): React.Node { return ( {header} {sidebar} {children} ); } PageContentWithSidebar.displayName = "Page.ContentWithSidebar"; export default PageContentWithSidebar;