Files
formbricks/apps/web/modules/ui/components/toaster-client/index.tsx
T
Dhruwang Jariwala 9dad06222d chore: move ui components to modules (#4342)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-11-21 17:58:15 +00:00

17 lines
305 B
TypeScript

"use client";
import { Toaster } from "react-hot-toast";
export const ToasterClient = () => {
return (
<Toaster
toastOptions={{
success: { className: "formbricks__toast__success" },
error: {
className: "formbricks__toast__error",
},
}}
/>
);
};