aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/layout.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-07 18:12:53 +0000
committerMohamedBassem <me@mbassem.com>2024-02-07 18:12:53 +0000
commit3745443c2b27afb833be7bcc2f3b4f486a42a571 (patch)
tree88f0a90fb100b56ad9e9f4686a1f72c50ba7d5a9 /web/app/layout.tsx
parent293869e1743c925519d938ebeeff033c773a1ec6 (diff)
downloadkarakeep-3745443c2b27afb833be7bcc2f3b4f486a42a571.tar.zst
[feature] Add support for deleting links
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>
);
}