Components
Loading preview...
Here is Error Alert Dialog component
npx shadcn@latest add https://21st.dev/r/rynkovski/error-alert-dialogimport { Component } from '@/components/ui/error-alert-dialog';
const DemoAlertDialog = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-background">
<Component />
</div>
);
};
export default DemoAlertDialog;