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