mirror of
https://github.com/codeaashu/claude-code.git
synced 2026-04-11 15:39:55 +03:00
claude-code
This commit is contained in:
12
web/components/notifications/ToastProvider.tsx
Normal file
12
web/components/notifications/ToastProvider.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import { ToastStack } from "./ToastStack";
|
||||
|
||||
export function ToastProvider({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<>
|
||||
{children}
|
||||
<ToastStack />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user