mirror of
https://litchi.icu/ngc2207/judge.git
synced 2025-05-18 19:36:43 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
|
"use client";
|
||
|
|
||
|
import * 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>;
|
||
|
}
|