mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
Co-authored-by: Alan Buscaglia <gentlemanprogramming@gmail.com> Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
29 lines
816 B
TypeScript
29 lines
816 B
TypeScript
"use client";
|
|
|
|
// Import Sentry client-side initialization
|
|
import "@/app/instrumentation.client";
|
|
|
|
import { HeroUIProvider } from "@heroui/system";
|
|
import { useRouter } from "next/navigation";
|
|
import { SessionProvider } from "next-auth/react";
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
|
import { ThemeProviderProps } from "next-themes/dist/types";
|
|
import * as React from "react";
|
|
|
|
export interface ProvidersProps {
|
|
children: React.ReactNode;
|
|
themeProps?: ThemeProviderProps;
|
|
}
|
|
|
|
export function Providers({ children, themeProps }: ProvidersProps) {
|
|
const router = useRouter();
|
|
|
|
return (
|
|
<SessionProvider>
|
|
<HeroUIProvider navigate={router.push}>
|
|
<NextThemesProvider {...themeProps}>{children}</NextThemesProvider>
|
|
</HeroUIProvider>
|
|
</SessionProvider>
|
|
);
|
|
}
|