react-render-conditions
v0.0.1
Published
A React component that conditionally renders its children based on a condition.
Downloads
20
Maintainers
Keywords
Readme
React Conditional Rendering
This is a React library for conditional rendering.
Installation
Use the package manager npm to install react-render-conditions.
npm install react-render-conditions
Usage
import { Switch, Case, Default } from 'react-render-conditions';
function MyComponent() {
return (
<Switch>
<Case condition={true}>This will render</Case>
<Case condition={false}>This will not render</Case>
<Default>This will render if none of the Cases render</Default>
</Switch>
);
}
Running Tests
To run tests, use the following command:
npm test
Author
Shashikant S. Wagh [email protected]
License
This project is licensed under the MIT License.