A higher-order component that always renders null
.
renderNothing() : Function
import {
compose,
renderNothing
} from 'incompose';
const Counter = (props) => (
<div>will never be rendered!</div>
);
export default compose(
renderNothing,
)(Counter);