Files
formbricks/packages/ui/ToasterClient/index.tsx
Neil Chauhan 3cf796b040 chore: FOR-1430 Component relocation (#1261)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-10-17 14:33:45 +00:00

8 lines
125 B
TypeScript

"use client";
import { Toaster } from "react-hot-toast";
export default function ToasterClient() {
return <Toaster />;
}