diff --git a/app/root.tsx b/app/root.tsx index 8e0df69..4f3b053 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -24,6 +24,8 @@ export const links: Route.LinksFunction = () => [ }, ]; +import { Toaster } from "sonner"; + export function Layout({ children }: { children: React.ReactNode }) { return ( @@ -32,11 +34,13 @@ export function Layout({ children }: { children: React.ReactNode }) { + - + {children} + );