aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/layout.tsx')
-rw-r--r--web/app/layout.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/app/layout.tsx b/web/app/layout.tsx
index 30d918df..a6543b1c 100644
--- a/web/app/layout.tsx
+++ b/web/app/layout.tsx
@@ -2,6 +2,7 @@ import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import React from "react";
+import { Toaster } from "@/components/ui/toaster";
const inter = Inter({ subsets: ["latin"] });
@@ -17,7 +18,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
- <body className={inter.className}>{children}</body>
+ <body className={inter.className}>
+ {children}
+ <Toaster />
+ </body>
</html>
);
}