37 lines
857 B
JavaScript
37 lines
857 B
JavaScript
const EmployeeModel = () => {
|
|
|
|
return (
|
|
|
|
<div
|
|
className="modal fade"
|
|
id="master-modal"
|
|
tabindex="-1"
|
|
aria-hidden="true"
|
|
role="dialog"
|
|
>
|
|
<div
|
|
className={`modal-dialog ${
|
|
modaldata?.type === "delete" ? "modal-md" : "modal-lg"
|
|
} modal-simple `}
|
|
>
|
|
<div className="modal-content">
|
|
<div className="modal-body">
|
|
<button
|
|
type="button"
|
|
className="btn-close"
|
|
data-bs-dismiss="modal"
|
|
aria-label="Close"
|
|
onClick={closeModal}
|
|
></button>
|
|
<div className="text-center mb-2"></div>
|
|
<p>Model</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmployeeModel;
|
|
|