Posts by Wellington Leite • 1 point
1 post
-
0
votes2
answers16832
viewsA: React Hook useEffect has a Missing dependency: .... Either include it or remove the dependency array React-Hooks/exhaustive-deps
Just put the connect in the array, for example: const Grafico = (props) => { const [estoqueReal, setEstoqueReal] = useState([]); const [estoquePrevisto, setEstoquePrevisto] = useState([]); const…