import BundleContainer from '../containers/bundle_container';
// Small wrapper to pass multiColumn to the route components
-export const WrappedSwitch = ({ multiColumn, children }) => (
- <Switch>
- {React.Children.map(children, child => React.cloneElement(child, { multiColumn }))}
- </Switch>
-);
+export class WrappedSwitch extends React.PureComponent {
+
+ render () {
+ const { multiColumn, children } = this.props;
+
+ return (
+ <Switch>
+ {React.Children.map(children, child => React.cloneElement(child, { multiColumn }))}
+ </Switch>
+ );
+ }
+
+}
WrappedSwitch.propTypes = {
multiColumn: PropTypes.bool,