mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-19 07:56:34 +00:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
|
"use client"
|
||
|
|
||
|
import * as React from "react"
|
||
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
||
|
|
||
|
export function ThemeProvider({
|
||
|
children,
|
||
|
...props
|
||
|
}: React.ComponentProps<typeof NextThemesProvider>) {
|
||
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
||
|
}
|