Very simple react dialog
npm install react-simple-dialog
import:
import Dialog from 'react-simple-dialog';
import 'react-simple-dialog/dist/dialog.css';
in JSX:
<Dialog ref='dialog'/>
in click:
this.refs.dialog.show({
config: {
title: 'info',
tip: 'confirm?'
},
okfunc: function(){
location.href = "#/ctrldesk"
}.bind(this)
});
babel ./src/dialog.js --out-file ./dist/dialog.js