skip to Main Content

Reactjs – I can't render my ProductList wih react-route-dom

<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-router-dom old version and some place we must replace switch to routes.…

VIEW QUESTION
Back To Top
Search