Files
claude-code/web/components/ui/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

7 lines
273 B
TypeScript

"use client";
// Re-exports for backwards compatibility.
// The notification system lives in web/components/notifications/ and web/lib/notifications.ts.
export { ToastProvider } from "@/components/notifications/ToastProvider";
export { useToast } from "@/hooks/useToast";