[dyad] Create image export application - wrote 4 file(s)

This commit is contained in:
[dyad]
2026-01-18 10:48:31 +01:00
parent 7a640af8b4
commit 0f5db0a419
4 changed files with 230 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import { type ThemeProviderProps } from "next-themes/dist/types"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}