File size: 689 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// @flow
import * as React from "react";
import PageTitle from "./PageTitle.react";
import PageSubTitle from "./PageSubTitle.react";
import PageOptions from "./PageOptions.react";
type Props = {|
+children?: React.Node,
+title?: string,
+subTitle?: string,
+options?: React.Node,
|};
function PageHeader({ children, title, subTitle, options }: Props): React.Node {
return (
<div className="page-header">
{title && <PageTitle>{title}</PageTitle>}
{subTitle && <PageSubTitle>{subTitle}</PageSubTitle>}
{options && <PageOptions>{options}</PageOptions>}
{children}
</div>
);
}
PageHeader.displayName = "Page.Header";
export default PageHeader;
|