added employer column in ready table
This commit was merged in pull request #31.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { KTIcon } from "../../../../../_digifi/helpers";
|
||||
import { useListView } from "../core/ListViewProvider";
|
||||
|
||||
const UserEditModalHeader = () => {
|
||||
const { setItemIdForUpdate } = useListView();
|
||||
|
||||
return (
|
||||
<div className="modal-header">
|
||||
{/* begin::Modal title */}
|
||||
<h2 className="fw-bolder">Edit Loan</h2>
|
||||
{/* end::Modal title */}
|
||||
|
||||
{/* begin::Close */}
|
||||
<div
|
||||
className="btn btn-icon btn-sm btn-active-icon-primary"
|
||||
data-kt-users-modal-action="close"
|
||||
onClick={() => setItemIdForUpdate(undefined)}
|
||||
style={{ cursor: "pointer" }}
|
||||
>
|
||||
<KTIcon iconName="cross" className="fs-1" />
|
||||
</div>
|
||||
{/* end::Close */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { UserEditModalHeader };
|
||||
Reference in New Issue
Block a user