PageHeaderLayout.js 360 Bytes
Newer Older
1 2 3
import React from 'react';
import PageHeader from '../components/PageHeader';

nikogu's avatar
nikogu committed
4
export default ({ children, wrapperClassName, top, ...restProps }) => (
afc163's avatar
afc163 committed
5
  <div style={{ margin: '-24px -24px 0' }} className={wrapperClassName}>
nikogu's avatar
nikogu committed
6
    {top}
7
    <PageHeader {...restProps} />
afc163's avatar
afc163 committed
8
    {children ? <div style={{ margin: '24px 24px 0' }}>{children}</div> : null}
9 10
  </div>
);