mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-08 04:45:00 -05:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import type * as React from "react";
|
||
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
||
|
|
|
||
|
|
export function ThemeProvider({
|
||
|
|
children,
|
||
|
|
...props
|
||
|
|
}: React.ComponentProps<typeof NextThemesProvider>) {
|
||
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
||
|
|
}
|