kuy / redux-tower

Saga powered routing engine for Redux app.
154 stars 15 forks source link

Composable routes #17

Open kuy opened 7 years ago

kuy commented 7 years ago

This is somewhat related with #10.

kuy commented 7 years ago

What I imagine is not so complicated feature.

// Import external routes
import admin from './admin';

// Include it to the main route
const routes = {
  '/': Index,
  '/admin': admin,
};

That's all! 😃

kuy commented 7 years ago

Umm... this is not a feature.