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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 436 byte(s)
chore: add trunk
1 rakinar2 575 "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