1.1.1 • Published 8 years ago
react-confirm-btn v1.1.1
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-btnExample
import ConfirmBtn from 'react-confirm-btn'
...
<ConfirmBtn onConfirm="..." > Delete </ConfirmBtn>Props
{
onConfirm: () => void,
confirmText?: string,
time?: number,
style?: {},
...
}