chore: Add next-themes npm dependency and update layout.tsx to use ThemeProvider

This commit is contained in:
Mauro Balades
2024-07-03 14:29:50 +02:00
parent f8b12599c8
commit ef3e94cb8d
8 changed files with 33 additions and 110 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>
}