4.1 React Query 설치 및 Provider 구성 o

This commit is contained in:
koreacomp5
2025-10-09 15:13:12 +09:00
parent 8064837422
commit 55c0f6abb1
8 changed files with 113 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import QueryProvider from "@/app/QueryProvider";
export const metadata: Metadata = {
@@ -14,8 +15,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body>
{children}
<body>
<QueryProvider>
{children}
</QueryProvider>
</body>
</html>
);