This is my index.js
JavaScript
x
8
1
ReactDOM.render(
2
<div>
3
<Home />
4
<App />
5
</div>,
6
document.getElementById('root')
7
)
8
App.js for all ROUTES in the app
JavaScript
1
10
10
1
function App() {
2
return(
3
<Router>
4
<Switch>
5
<Route path="/cpu" exact component={Info}/>
6
</Switch>
7
</Router>
8
)
9
}
10
Navs function in Home.class
JavaScript
1
21
21
1
function Navs(){
2
return(
3
ReactDOM.render(
4
<div className="Navs">
5
<ul>
6
<Router>
7
<Link to="/cpu">CPU</Link>
8
<Link to="/Monitors">MONITORS</Link>
9
<Link to="/GPU">GPUS</Link>
10
<Link to="/Ram">RAMS</Link>
11
<Link to="/Keyboards">KEYBOARDS</Link>
12
<Link to="/Mouse">MOUSE </Link>
13
<Link to="/Others">OTHER ACCESORIES</Link>
14
</Router>
15
</ul>
16
</div>
17
,document.getElementById('Navs')
18
)
19
)
20
}
21
CPU.jsx(The component tobe rendered when user clicks on cpu category
JavaScript
1
7
1
function Info(){
2
render(
3
<h1>Hello in cpus </h1>
4
)
5
return null
6
}
7
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
1
7
1
ReactDOM.render(
2
<div>
3
<App />
4
</div>,
5
document.getElementById('root')
6
)
7
App:
JavaScript
1
11
11
1
function App() {
2
return(
3
<Router>
4
<Switch>
5
<Route path="/cpu" exact component={Info}/>
6
<Route path="/" exact component={Home}/>
7
</Switch>
8
</Router>
9
)
10
}
11