mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
12 lines
377 B
JavaScript
12 lines
377 B
JavaScript
import React from 'react';
|
|
import { Modal } from '@douyinfe/semi-ui';
|
|
const UserRemovalModal = function UserRemovalModal({ onOk, onCancel }) {
|
|
return (
|
|
<Modal title="Removing user" visible={true} closable={false} onOk={onOk} onCancel={onCancel}>
|
|
<p>Removing this user will also remove all associated jobs.</p>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default UserRemovalModal;
|