Tôi đang sử dụng cùng một thành phần cho ba tuyến đường khác nhau:
<Router>
<Route path="/home" component={Home} />
<Route path="/users" component={Home} />
<Route path="/widgets" component={Home} />
</Router>
Có cách nào để kết hợp nó không, giống như:
<Router>
<Route path=["/home", "/users", "/widgets"] component={Home} />
</Router>