4.0.6 • Published 5 years ago
react-loadingmask v4.0.6
react-loadingmask
A Loading Component for displaying loading state of a page or a section.
Install
npm i --save react-loadingmask
yarn add react-loadingmask --saveGetting Started
import LoadingMask from "react-loadingmask";
import "react-loadingmask/dist/react-loadingmask.css";
<LoadingMask loading={true} text={"loading..."}>
<div style={{ width: 500, height: 300 }}>Compoment You want to display</div>
</LoadingMask>Demo
Properties
| Props | Type | Description | Default |
|---|---|---|---|
| loading | boolean | Loading status | false |
| text | string | Customize description content | - |
| indicator | ReactNode | React node of the spinning indicator | - |