0.0.1 • Published 2 months ago

react-render-conditions v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

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 shashikantwagh721@gmail.com

License

This project is licensed under the MIT License.