kuy / redux-tower

Saga powered routing engine for Redux app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

More flexible path names

kuy opened this issue · comments

Allow path names without leading slashes.

const route = {
  'about': About,
  'admin': {
    '.': AdminIndex,
    'post': {
      '.': AdminPostIndex,
      ':id': AdminPostShow,
      ':id/edit': AdminPostEdit,
    }
  }
}