Preparing the repository

This commit is contained in:
charles-gauthereau
2024-12-31 16:42:19 +01:00
parent 1466202fd1
commit e6975b224f
13 changed files with 11390 additions and 6836 deletions
+1 -1
View File
@@ -4,6 +4,6 @@ import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import { type ThemeProviderProps } from "next-themes/dist/types"
export default function ThemeProvider({ children, ...props }: ThemeProviderProps) {
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}