storj/web/satellite/src/utils/constants/routerConstants.ts
Nikolay Yurchenko 64e2ca6f42
Satellite project details markup, adaptation and tests fixes (#704)
* [V3-770] user settings markup updated

* naming refactoring acc to BEM

* [V3-767] added project details markup, created media rules, existing tests fixed
2018-11-23 17:48:11 +02:00

16 lines
254 B
TypeScript

const ROUTES = {
DEFAULT: {
path: '/login',
name: 'Login'
},
REGISTER: {
path: '/register',
name: 'Register'
},
DASHBOARD: {
path: '/',
name: 'Dashboard'
}
};
export default ROUTES;