mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-14 08:15:27 +00:00
6 lines
277 B
TypeScript
6 lines
277 B
TypeScript
import {ThemeProvider as NextThemesProvider} from "next-themes"
|
|
import {type ThemeProviderProps} from "next-themes/dist/types"
|
|
|
|
export function ThemeProvider({children, ...props}: ThemeProviderProps) {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
} |