Posts by Thiago Freitas • 16 points
3 posts
-
-2
votes1
answer52
viewsA: Problems with React-router-dom Withrouter
import React, { Component } from 'react'; import { MenuBar as Router, Switch, Route, Link } from 'react-router-dom' return( <Router> <div> <DropdownButton…
-
0
votes1
answer30
viewsA: My simple classname logic is not comparing right (React)
It would validate each of the status and put the backlog as: yes or no? let $status = null let $render = null //verifica o status e cria um JSX a partir do resultado if (($status === 'OVERDUE') ||…
-
-1
votes1
answer127
viewsA: How to render a modal on a map using React?
Try creating a function to select the product activeProduct(product, index) { this.setState({ current: product, currentIndex: index }) } After render here is in list format, you will need to change…