react-confirm-btn
v1.1.1
Published
React Confirm Button
Downloads
79
Maintainers
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?: {},
...
}