使用shadcn重构

This commit is contained in:
2025-04-24 19:37:31 +08:00
parent a55726c724
commit c99b76e7a9
9 changed files with 3863 additions and 5883 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>
}