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

28 lines
486 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',
2016-05-07 20:32:37 +01:00
component: Login,
hideNavbar: true
2016-02-04 20:14:45 +00:00
},
'INFO': {
id: 'info',
component: Info
2016-02-06 12:42:44 +00:00
},
'HOME': {
id: 'home',
2016-05-07 15:28:50 +01:00
component: Home,
title: 'All Projects'
2016-03-11 11:53:55 +00:00
},
'PROJECT_DETAILS': {
id: 'project_details',
component: ProjectDetails
2016-02-01 20:58:00 +00:00
}
});