mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
Co-authored-by: Alan Buscaglia <alanbuscaglia@MacBook-Pro.local> Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com> Co-authored-by: César Arroba <cesar@prowler.com> Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com>
26 lines
732 B
TypeScript
26 lines
732 B
TypeScript
"use 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>
|
|
);
|
|
}
|