This commit is contained in:
eric
2026-06-07 01:17:46 -05:00
parent 283d65d1d1
commit cd885f5fcd
110 changed files with 17876 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
"use client";
import { ThemeProvider } from "@/app/digital/context/ThemeContext";
import { PayStatusPollProvider } from "@/app/digital/components/PayStatusPollProvider";
export default function DigitalProviders({
children,
}: {
children: React.ReactNode;
}) {
return (
<ThemeProvider>
<PayStatusPollProvider />
{children}
</ThemeProvider>
);
}