mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
10 lines
316 B
TypeScript
10 lines
316 B
TypeScript
|
|
"use client"
|
||
|
|
|
||
|
|
import * as React from "react"
|
||
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
||
|
|
import type { ThemeProviderProps } from "next-themes"
|
||
|
|
|
||
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
||
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
||
|
|
}
|