This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/app/components/routes/RouteMaster.js

26 lines
437 B
JavaScript
Raw Normal View History

2016-02-01 20:58:00 +00:00
import { Map } from 'immutable';
import Login from './login';
2016-02-04 20:14:45 +00:00
import Info from './info';
2016-02-06 12:42:44 +00:00
import Home from './home';
2016-03-11 11:53:55 +00:00
import ProjectDetails from './project-details';
2016-02-01 20:58:00 +00:00
export default Map({
'LOGIN': {
id: 'login',
component: Login
2016-02-04 20:14:45 +00:00
},
'INFO': {
id: 'info',
component: Info
2016-02-06 12:42:44 +00:00
},
'HOME': {
id: 'home',
component: Home
2016-03-11 11:53:55 +00:00
},
'PROJECT_DETAILS': {
id: 'project_details',
component: ProjectDetails
2016-02-01 20:58:00 +00:00
}
});