시스템을 추구하는 것은 나쁜걸까?

This commit is contained in:
암냥 2025-10-29 21:34:05 +09:00
commit d6456466c6
2 changed files with 23 additions and 2 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>
}