({ children }: { children: React.ReactNode })
| 3 | import { ToastStack } from "./ToastStack"; |
| 4 | |
| 5 | export function ToastProvider({ children }: { children: React.ReactNode }) { |
| 6 | return ( |
| 7 | <> |
| 8 | {children} |
| 9 | <ToastStack /> |
| 10 | </> |
| 11 | ); |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected