refactor(theme): move all components to components/

This commit is contained in:
Théo LAGACHE
2026-06-23 16:06:27 +02:00
parent 9d1af49b35
commit 2f83eafa97
6 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ import { type PropsWithChildren, Suspense } from "react";
import { Toaster } from "@/components/ui/sonner";
import { ErrorLayout } from "@/components/common/error-layout";
import { ThemeMetaUpdater } from "@/features/theme/theme-meta-updater";
import { ThemeProvider } from "@/features/theme/theme-provider";
import { ThemeMetaUpdater } from "@/features/theme/components/theme-meta-updater";
import { ThemeProvider } from "@/features/theme/components/theme-provider";
export type ProviderProps = PropsWithChildren<{}>;
const queryClient = new QueryClient();