/[sudobot]/branches/7.x/docs/app/providers.tsx
ViewVC logotype

Annotation of /branches/7.x/docs/app/providers.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 436 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 "use client";
2    
3     import { RouterContextProvider } from "@/contexts/RouterContext";
4     import { theme } from "@/utils/theme";
5     import { ThemeProvider } from "@emotion/react";
6     import { PropsWithChildren } from "react";
7    
8     export default function Providers({ children }: PropsWithChildren) {
9     return (
10     <ThemeProvider theme={theme}>
11     <RouterContextProvider>{children}</RouterContextProvider>
12     </ThemeProvider>
13     );
14     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26