Files
claude-code/web/components/notifications/ToastProvider.tsx
nirholas 3a854557e0
Some checks failed
CI / Typecheck & Lint (push) Has been cancelled
feat: implement API key authentication and user session management
2026-03-31 12:43:05 +00:00

13 lines
207 B
TypeScript

"use client";
import { ToastStack } from "./ToastStack";
export function ToastProvider({ children }: { children: React.ReactNode }) {
return (
<>
{children}
<ToastStack />
</>
);
}