10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
|
import { ToastProvider } from "@/contexts/ToastContext";
|
||
|
import { UserProvider } from "@/contexts/UserContext";
|
||
|
export default function CombinedProviders({
|
||
|
children,
|
||
|
}: Readonly<{
|
||
|
children: React.ReactNode;
|
||
|
}>) {
|
||
|
return <ToastProvider>{children}</ToastProvider>;
|
||
|
}
|