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