react-either
v0.1.1
Published
Higher-order component to conditionally render a component or an alternative component
Downloads
3
Readme
react-either
Higher-order component to conditionally render a component or an alternative component
Usage
$ npm install --save minitrue
const either = require('react-either');
either(Component, AltComponent, function(props) {
// ...
// return true to render Component; otherwise render AltComponent
return cond ? true : false;
});
License
MIT