mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-19 14:06:12 +01:00
9 lines
296 B
TypeScript
9 lines
296 B
TypeScript
'use client'
|
|
|
|
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>
|
|
}
|