Components
Loading preview...
Here is deactivationg two-step modal dialog
@ephraimduncan
npx shadcn@latest add https://21st.dev/r/ephraimduncan/dialog-modal// demo.tsx
"use client";
import Dialog08 from "@/components/ui/dialog-modal";
export default function DemoPage() {
return (
<div className="flex justify-center items-center h-screen bg-gray-50 dark:bg-gray-900">
<Dialog08 />
</div>
);
}