Posts by Giovani de Sousa Leite • 1 point
3 posts
-
0
votes1
answer29
viewsA: Difficulty with Context API [REACT]
Using the same context and parentId, this implementation should work. To use the same context you must have only one Timersprovider around all Timers. Having the same context, every time you add a…
-
0
votes1
answer96
viewsA: How can I create a tab scheme with React Hooks?
There are two ways to solve this, follow the way you started and use useState or use the Bootstrap tab component that already has the behavior most similar to what you want. Adding useState to your…
-
0
votes1
answer72
viewsA: My onClick button is not working on next js
const Teste = () => { return ( <div> <input type="button" onClick={()=>console.log('ok')} value="clique"/> </div> ) } The Test Component is not returning, so the button does…
reactanswered Giovani de Sousa Leite 1