mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-21 04:00:14 +00:00
initial commit
This commit is contained in:
commit
ef9ccf22d3
133 changed files with 20802 additions and 0 deletions
9
components/ui/theme-provider.tsx
Normal file
9
components/ui/theme-provider.tsx
Normal 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>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue