Package Exports
- @girishsawant999/react-loading-button
- @girishsawant999/react-loading-button/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@girishsawant999/react-loading-button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Loading Button
A small react loading button component for getting flexibility to show other content instead of full screen loader while submitting API request.
📝 Usage
Just install the package using command
npm install @girishsawant999/react-loading-buttonAnd then import component in your react app
import Button from '@girishsawant999/react-loading-button';
// Use Button Component
<Button loading={isLoading}>Loading Button</Button>;That's all and you are ready to go.
