todos-contra-el-fuego-web/imports/ui/components/Prompt/Confirm.js
2017-12-20 12:59:25 +01:00

11 lines
445 B
JavaScript

import { createConfirmation } from 'react-confirm';
import Prompt from './Prompt';
// create confirm function
const confirm = createConfirmation(Prompt);
// This is optional. But I recommend to define your confirm function easy to call.
export default function (confirmation, options = {}) {
// You can pass whatever you want to the component. These arguments will be your Component's props
return confirm({ confirmation, ...options });
}