Files
ashutoshpythoncs@gmail.com b564857c0b claude-code
2026-03-31 18:58:05 +05:30

13 lines
207 B
TypeScript

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