-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.jsx
44 lines (37 loc) · 1.08 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import React, { useEffect,useState } from "react";
import Navbar from "./components/Navbar/Navbar";
import { BrowserRouter as Router } from "react-router-dom";
import { useDispatch } from "react-redux";
import AllRoutes from "./AllRoutes";
import { fetchAllQuestion } from "./actions/question";
import { getAllUsers } from "./actions/users";
//////////////////////Style///////////////////
import "bootstrap/dist/css/bootstrap.min.css";
const App = () => {
const dispatch = useDispatch();
// whenever dispatch get called this useEffect will run
useEffect(() => {
dispatch(fetchAllQuestion());
dispatch(getAllUsers());
}, [dispatch]);
const [slideIn, setSlideIn] = useState(true);
useEffect(() => {
if (window.innerWidth <= 760) {
setSlideIn(false);
}
});
const handleSlideIn = () => {
if (window.innerWidth <= 760) {
setSlideIn((state) => !state);
}
};
return (
<div className="App">
<Router>
<Navbar />
<AllRoutes slideIn={slideIn} handleSlideIn={handleSlideIn} />
</Router>
</div>
);
};
export default App;