Parent Directory
|
Revision Log
chore: add trunk
1 | "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 |