diff --git a/src/components/example/DialogExample.tsx b/src/components/example/DialogExample.tsx new file mode 100644 index 0000000..678ab3b --- /dev/null +++ b/src/components/example/DialogExample.tsx @@ -0,0 +1,36 @@ +'use client' +import { useState } from "react"; + +import Dialog from "@/components/neobruu/Dialog"; +import Button from "@/components/neobruu/Button"; + +export default function DialogExample() { + const [showDialog, setShowDialog] = useState(false); + + const handleShowDialog = () => { + setShowDialog(true); + }; + + return ( +