import ImmutablePropTypes from 'react-immutable-proptypes' import ImmutablePureComponent from 'react-immutable-pure-component' import Sticky from 'react-stickynode' import Layout from './layout' import GroupHeader from '../components/group_header' export default class GroupLayout extends ImmutablePureComponent { static propTypes = { actions: PropTypes.array, children: PropTypes.node, group: ImmutablePropTypes.map, layout: PropTypes.object, relationships: ImmutablePropTypes.map, showBackBtn: PropTypes.bool, title: PropTypes.string, } render() { const { actions, children, group, layout, relationships, showBackBtn, title, } = this.props return (
{children}
{layout}
) } }