Posts by italofgcoura • 1 point
4 posts
-
-3
votes1
answer51
viewsA: Reactjs no matter the css
That point after . css can be your mistake, remove and leave only so: import './Styles.css'
reactanswered italofgcoura 1 -
-3
votes2
answers640
viewsA: State Global using reactjs
Search Context API, is simpler than Redux (in my opinion) and will solve your problem. Basically you create a context (in your case the context will be in the component that is clicked), and you…
-
-3
votes2
answers583
viewsA: Consuming API Reactjs
Good afternoon, Check out this microsoft link, basically you will have to enable JS on your pc…
reactanswered italofgcoura 1 -
-2
votes5
answers74116
viewsA: Removing a specific element in an array
You can use it like this: let vet = ["Italo", "Joao", "Maria"]; let index = vet.indexOf("Italo") if(index > -1) { vet.splice(index,1) } The indexOf will search your vector and return 0 the value…