React-router Cannot Find Components Of Other Pages In The App
I am trying to set up a test component, which is basically a navigation bar and two components to navigate around. This is what it looks like: class Page1 extends Component{ rend
Solution 1:
Add path="/"
to the main App
Route. Also, you are rendering the App
component twice within your configuration. Which won't work properly. You should change it to:
class Page1 extends Component{
render(){
return (<div>Page1</div>);
}
}
class Page2 extends Component{
render(){
return (<div>Page222</div>);
}
}
class Home extends Component {
render(){
return(<h1>I AM HOME</h1>);
}
}
class App extends Component{
render(){
console.log('children: ', this.props.children);
return(
<div>
<NavigationBar/>
{this.props.children}
</div>
);
}
}
ReactDOM.render(
<Router history={browserHistory}>
<Route path="/" component={App} >
<IndexRoute component={Home} /> //Being a different component
<Route path="page1" component={Page1}/>
<Route path="page2" component={Page2}/>
</Route>
</Router>,
document.getElementById("app")
);
Post a Comment for "React-router Cannot Find Components Of Other Pages In The App"