Tôi muốn hiển thị một title
trong <AppBar />
đó bằng cách nào đó được truyền từ tuyến đường hiện tại.
Trong React Router v4, làm thế nào <AppBar />
để có thể đưa tuyến đường hiện tại đi vào chỗ dựa của nó title
?
<Router basename='/app'>
<main>
<Menu active={menu} close={this.closeMenu} />
<Overlay active={menu} onClick={this.closeMenu} />
<AppBar handleMenuIcon={this.handleMenuIcon} title='Test' />
<Route path='/customers' component={Customers} />
</main>
</Router>
Có cách nào để vượt qua một tiêu đề tùy chỉnh từ một tùy chỉnh prop
trên <Route />
?