Posts by Eric Roberto • 296 points
3 posts
-
1
votes1
answer36
viewsA: Routes React React-router-dom
You will need to involve the Browserrouter tags in every application, follow example below. And you do not need to re-declare the pages in your Home, as they will be rendered as per route: import {…
reactanswered Eric Roberto 296 -
6
votes2
answers16832
viewsA: React Hook useEffect has a Missing dependency: .... Either include it or remove the dependency array React-Hooks/exhaustive-deps
The problem here is that it is not clear to use external methods within the useEffect event as it will be more complicated to map out what effect information needs to be executed. All variables and…
-
2
votes2
answers87
viewsA: SQL Query Simple
According to your data model, I understand that you should Join between the 3 tables to get the desired result : Select NomeAluno, TbMaterias.NomeMateria From TbAluno INNER Join TbMateriasAluno On (…
sqlanswered Eric Roberto 296