refactor folder

This commit is contained in:
Ishaan Dey
2024-04-16 17:18:51 -04:00
parent 213c6e4576
commit a838241ac3
749 changed files with 6 additions and 6 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>
}