/[sudobot]/trunk/docs/app/providers.tsx
ViewVC logotype

Annotation of /trunk/docs/app/providers.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 573 - (hide annotations)
Mon Jul 29 17:54:59 2024 UTC (8 months, 2 weeks ago) by rakinar2
File MIME type: application/typescript
File size: 436 byte(s)
chore: push code for v9 [second attempt]
1 rakinar2 573 "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