0.1.1 • Published 9 years ago

react-either v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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