Дерево компонентов, которое я хочу, как показано ниже
- Авторизоваться
- Главная
- контакт
- О
Контакты и О детях Дома.
Это мой App.js,
class App extends Component {
render() {
return (
<BrowserRouter>
<div>
<Route exact path="/home" component={HomeView} />
</div>
</BrowserRouter>
);
}
}
render(<App />, document.getElementById('root'));
Это дом,
export const HomeView = ({match}) => {
return(
<div>
<NavBar />
Here i want to render the contact component, (Navbar need to stay)
</div>
)
}
Это мой Навбар,
export const NavBar = () => {
return (
<div>
<Link to="/home">Home</Link>
<Link to="/home/contact">Contact</Link>
<hr/>
</div>
)
}
Компоненту контактов просто нужно отобразить "привет текст".