The following questions will cement your knowledge of what you have just learned about in this chapter:
- We have the following routes defined:
<BrowserRouter>
<Route path="/" component={HomePage} />
<Route path="/search" component={SearchPage} />
</BrowserRouter>
Answer the following questions:
- What component(s) will be rendered when the / location is entered in the browser?
- What about when the /search location is entered in the browser?
- We have the following routes defined:
<BrowserRouter>
<Switch>
<Route path="/" component={HomePage} />
<Route path="/search" component={SearchPage} />
</Switch>
</BrowserRouter>
Answer the following questions:
- What component(s) will be rendered when the / location is entered in the browser?
- What about when the /search location...