diff --git a/src/App.css b/src/App.css
index 9716174..387e493 100644
--- a/src/App.css
+++ b/src/App.css
@@ -39,4 +39,12 @@
button{
font-size: 1rem!important;
font-weight: 700!important;
+}
+
+.font-600 {
+ font-weight: 600;
+}
+
+.accordion-button, .accordion-button:not(.collapsed) {
+ background-color: transparent!important;
}
\ No newline at end of file
diff --git a/src/App.js b/src/App.js
index 85a27bb..c75825b 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,23 +1,28 @@
import { QueryClientProvider, QueryClient } from '@tanstack/react-query'
+import { Provider } from 'react-redux';
+import store from './store/store'
import AppRouters from './AppRouters';
import './App.css';
-function App() {
- const queryClient = new QueryClient({
- defaultOptions: {
- queries: {
- refetchOnWindowFocus: false,
- retry: 3,
- // refetchOnMount: false,
- staleTime: Infinity // can also be a number in millisecond
- },
+const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ refetchOnWindowFocus: false,
+ retry: 3,
+ // refetchOnMount: false,
+ staleTime: 360000 // can also be a number in millisecond
},
- })
+ },
+})
+
+function App() {
return (
First, a disclaimer – the entire process of writing a blog post often takes more than a couple of hours, even if you can type eighty words as per minute and your writing skills are sharp.
+{userDetails.email}