dvdzkwsk / react-redux-starter-kit

Get started with React, Redux, and React-Router.
MIT License
10.28k stars 2.2k forks source link

Multiple paths to a route #1322

Open SmboBeast opened 7 years ago

SmboBeast commented 7 years ago

Guys,

Can a route have multiple paths? For example, I want 'test/:id' and 'test/blahblah/:name/:id' to go to the same page and have the same code executed.

` export default { path: '/test/:id', path: '/test/blahblah/:name/:id',

async action({ params }) { return { title: 'Test', component: , }; }, }; `