Skip to content

Commit

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

const Confirm = ({ title }) => {
const [confirmed, setConfirmed] = useState(null);
Expand All @@ -9,7 +10,7 @@ const Confirm = ({ title }) => {
const ConfirmLayout = () => {
return (
<>
<div>dkokkokok</div>
<Modal show={true} className={"w-[400px] h-[350px]"}></Modal>
</>
);
};
Expand Down

0 comments on commit 6a3ada0

Please sign in to comment.