<Col xs="9"> <Routes> <Route exact path="/" render={(props) => ( <ProductList {...props} products={this.state.products} addToCart={this.addToCart} currentCategory={this.state.currentCategory} info={productInfo} /> )} />
this is my App.js file. it doesn’t work.
I looked react-route-dom old version and some place we must replace switch to routes. But any changes didn’t changed the result. I can’t see my ProductList component.
“react-router-dom”: “6.23.0”
ENES is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.