redux-tower
redux-tower copied to clipboard
Composable routes
This is somewhat related with #10.
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! 😃
Umm... this is not a feature.