调整组件位置

This commit is contained in:
2025-05-12 22:43:24 +08:00
parent 37c422e752
commit 94276be2b7
6 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
"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>
}