Block UI for react
npm install @ethanresnick/react-block-ui  
There is also a separate component which works with redux to help block and unblock automatically based on redux action types. See the ReduxBlockUi component for more details.
Install react-block-ui via NPM
``sh`
npm install --save react-block-ui react react-dom
Import the components you need, example:
`js`
import BlockUi from 'react-block-ui';
import ReduxBlockUi from 'react-block-ui/redux'; // only for redux
import reduxMiddleware from 'react-block-ui/reduxMiddleware'; // only for redux
import from 'react-block-ui/style.css';
Install dependencies:
`sh`
npm install
Run examples at http://localhost:8080/ with webpack dev server:
`sh`
npm start
Run tests:
`sh`
npm test
Run tests & coverage report:
`sh`
npm test:coverage
Watch tests:
`sh``
npm run test:watch