import { Button, Checkbox, Modal } from "@douyinfe/semi-ui"; import React from "react"; const ReminderBox = ({ title, wait, toadd, visible, onOk, close, USER}) => { return ( {title} } onCancel={() => { close() }} icon={ } footer={
{ localStorage.setItem( USER, JSON.stringify(checked.target.checked) ) }} aria-label="Checkbox 示例" style={{ width: 100 }} > 不再提醒
} visible={visible} >
); }; export default ReminderBox;