removed react query

This commit is contained in:
polaris
2024-07-01 12:47:02 -04:00
parent 9ca8b1ef97
commit 7be756270e
3 changed files with 27 additions and 37 deletions

View File

@ -2,7 +2,6 @@ import type { Metadata } from "next";
import { GeistSans } from "geist/font/sans";
import { Toaster } from "@/components/ui/toaster";
import "./globals.css";
import ReactQueryProvider from "./provider";
export const metadata: Metadata = {
title: "Daphnis",
@ -17,9 +16,7 @@ export default function RootLayout({
return (
<html lang="en" className={GeistSans.className}>
<body className={GeistSans.className}>
<ReactQueryProvider>
<main className="">{children} </main>
</ReactQueryProvider>
<main className="">{children} </main>
<Toaster />
</body>
</html>