Skip to content

Commit

Permalink
feat(confirm)
Browse files Browse the repository at this point in the history
  • Loading branch information
tikrack committed Feb 2, 2025
1 parent 6a3ada0 commit f1dad83
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions src/components/shared/Confirm.jsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
import { useEffect, useState } from "react";
import Modal from "./Modal.jsx";

const Confirm = ({ title }) => {
const [confirmed, setConfirmed] = useState(null);

useEffect(() => {}, []);
const Confirm = ({ accept, reject, show, callback }) => {
return <></>;
};

const ConfirmLayout = () => {
return (
<>
<Modal show={true} className={"w-[400px] h-[350px]"}></Modal>
</>
);
};

export { ConfirmLayout };

export default Confirm;

0 comments on commit f1dad83

Please sign in to comment.