NERDDISCO's picture
feat: added cyberpunk example
a8d792f
raw
history blame contribute delete
249 Bytes
import {
ThemeProvider as NextThemesProvider,
type ThemeProviderProps,
} from "next-themes";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}