Higher Order Component - Props proxy

March 27, 2017 ยท View on GitHub

This basically helps to add/edit props passed to the Component.

function HOC(WrappedComponent) {
  return class Test extends Component {
    render() {
      const newProps = {
        title: 'New Header',
        footer: false,
        showFeatureX: false,
        showFeatureY: true
      };

      return <WrappedComponent {...this.props} {...newProps} />
    }
  }
}