Liam
f00d6d8ba4
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
9 lines
321 B
TypeScript
9 lines
321 B
TypeScript
"use client";
|
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
|
import { type ThemeProviderProps } from "next-themes/dist/types";
|
|
|
|
export default function ThemeProvider({ children, ...props }: ThemeProviderProps): JSX.Element {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
}
|