Package Exports
- react-confirm-btn
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 (react-confirm-btn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Confirm Button
Simple react component that handles confirmation before running an action
Installation
npm install react-confirm-btn --save
// or
yarn add react-confirm-btn
Example
import ConfirmBtn from 'react-confirm-btn'
...
<ConfirmBtn onConfirm="..." > Delete </ConfirmBtn>
Props
{
onConfirm: () => void,
confirmText?: string,
time?: number,
style?: {},
...
}