You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
|
import { Button, Modal, Space } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const LocalizedModal = () => {
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const showModal = () => {
|
|
setOpen(true);
|
|
};
|
|
|
|
const hideModal = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={showModal}>
|
|
Modal
|
|
</Button>
|
|
<Modal
|
|
title="Modal"
|
|
open={open}
|
|
onOk={hideModal}
|
|
onCancel={hideModal}
|
|
okText="确认"
|
|
cancelText="取消"
|
|
>
|
|
<p>Bla bla ...</p>
|
|
<p>Bla bla ...</p>
|
|
<p>Bla bla ...</p>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const [modal, contextHolder] = Modal.useModal();
|
|
|
|
const confirm = () => {
|
|
modal.confirm({
|
|
title: 'Confirm',
|
|
icon: <ExclamationCircleOutlined />,
|
|
content: 'Bla bla ...',
|
|
okText: '确认',
|
|
cancelText: '取消',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Space>
|
|
<LocalizedModal />
|
|
<Button onClick={confirm}>Confirm</Button>
|
|
</Space>
|
|
{contextHolder}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|