profileShare

rasmusjy / roundtable

Read-only snapshot

No repository description.

main default branch 181 files Expires Sep 13, 2026, 9:06 AM
theme-provider.tsx 300 bytes
1 'use client';
2
3 import { ThemeProvider as NextThemesProvider } from 'next-themes';
4 import type * as React from 'react';
5
6 export function ThemeProvider({ children, ...props }: React.ComponentProps<typeof NextThemesProvider>) {
7 return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
8 }
9