React suggests to Transfer Props. Neat!
How can I transfert all but one?
render: function(){ return (
You can use the following technique to consume some of the props and pass on the rest:
render() { var {one, ...other} = this.props; return ( ); }
Source