Migrate to Mantine UI framework

This commit is contained in:
Philipinho
2023-09-26 03:31:20 +01:00
parent 2de9f6d60b
commit d733b9a7f6
83 changed files with 1296 additions and 2841 deletions

View File

@ -1,4 +1,4 @@
'use client'
'use client';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import React from 'react';
@ -7,9 +7,9 @@ const queryClient = new QueryClient({
defaultOptions: {
queries: {
refetchOnMount: false,
refetchOnWindowFocus: false
}
}
refetchOnWindowFocus: false,
},
},
});
export function TanstackProvider({ children }: React.PropsWithChildren) {