Posts by Gabriel • 63 points
4 posts
-
-1
votes1
answer26
viewsQ: Render multiple components based on a number
I have a component in Reactjs and need to render the component <FaRegStar key="1" size="30px" /> map-based list.stars. I don’t know how I could do that, someone could help me? const User = ()…
-
0
votes2
answers98
viewsQ: Select does not let you select the option
Hello, I have a list of option of a select and I can’t select an item from the list. import React, { useState, useEffect } from 'react'; import styled from 'styled-components'; export default…
-
2
votes1
answer287
viewsQ: Access a list within a list in React jsx
Hello, I’m a newcomer to React and am making a request via Xios. This request returns me the following JSON: after receiving this list I make a .map on the list and it returns me the following: What…
-
3
votes1
answer68
viewsQ: Create a <div> inside a . catch in Aces
Hello, I am currently developing in React and am trying to put a div inside the .catch. I am currently using the following code: componentDidMount() { axios.get(API_ListaEmpresa) .then(response…