feat: add tanstack query

This commit is contained in:
2026-06-15 15:11:37 +05:30
parent 925a2eb4fa
commit 134e2d1bb8
7 changed files with 86 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
'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>;
}