mirror of
https://github.com/codeaashu/claude-code.git
synced 2026-04-08 22:28:48 +03:00
13 lines
207 B
TypeScript
13 lines
207 B
TypeScript
"use client";
|
|
|
|
import { ToastStack } from "./ToastStack";
|
|
|
|
export function ToastProvider({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<ToastStack />
|
|
</>
|
|
);
|
|
}
|