import '../styles/globals.css'
import NextProgress from 'next-progress'
import { useRouter } from 'next/router'
import { AnimatePresence } from 'framer-motion'
import { Toaster } from 'react-hot-toast'
import { QueryClient, QueryClientProvider } from 'react-query'
const queryClient = new QueryClient()
function MyApp({ Component, pageProps }) {
const router = useRouter()
return (
<>
window.scrollTo(0, 0)}
>
>
)
}
export default MyApp