Skip to content
Advertisement

How can I open a new webpage when user clicks on a category using React Router?

This is my index.js

JavaScript

App.js for all ROUTES in the app

JavaScript

Navs function in Home.class

JavaScript

CPU.jsx(The component tobe rendered when user clicks on cpu category

JavaScript

The problem is when I Navigate on cpu it shows the same Home page but with the cpu component rendered in it..But the path is changed to “http://localhost:3000/cpu”

Advertisement

Answer

This is because in your index.js you are including <Home /> and then <App />. For not showing Home you should include it into App as another route. Eg.:

index.js

JavaScript

App:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement