All checks were successful
- Reorganized imports in multiple files for better readability. - Fixed formatting issues in `mode-toggle` and `settings` components to improve maintainability.
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
"use client";
|
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
|
import type * as React from "react";
|
|
|
|
export function ThemeProvider({
|
|
children,
|
|
...props
|
|
}: React.ComponentProps<typeof NextThemesProvider>) {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
}
|