mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
"use client";
|
|
|
|
import { ChakraProvider } from "@chakra-ui/react";
|
|
import theme from "./styles/theme";
|
|
|
|
import { WherebyProvider } from "@whereby.com/browser-sdk/react";
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<ChakraProvider theme={theme}>
|
|
<WherebyProvider>{children}</WherebyProvider>
|
|
</ChakraProvider>
|
|
);
|
|
}
|