MCPcopy Create free account
hub / github.com/code100x/daily-code / Providers

Function Providers

apps/web/components/Providers.tsx:10–17  ·  view source on GitHub ↗
({ children }: { children: React.ReactNode })

Source from the content-addressed store, hash-verified

8import { Toaster } from "@repo/ui";
9
10export const Providers = ({ children }: { children: React.ReactNode }) => {
11 return (
12 <SessionProvider>
13 <RecoilRoot>{children}</RecoilRoot>
14 <Toaster />
15 </SessionProvider>
16 );
17};
18
19export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
20 return <NextThemesProvider {...props}>{children}</NextThemesProvider>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected