ra-custom-confirm
您的自定义确认对话框。
安装
# via npm
npm install --save ra-custom-confirm
# via yarn
yarn add ra-custom-confirm
演示版
克隆此存储库后,运行以下命令:
cd example/
yarn install
yarn start
然后浏览到 。
凭据是登录名/密码
用法
import React , { Fragment , useState } from 'react' ;
import Share from '@material-ui/icons/Share' ;
import ErrorOutline from '@material-ui/icons/ErrorOutline' ;
import CustomConfirm from 'ra-custom-co
1