storj/web/satellite/src/utils/constants/routerConstants.ts

19 lines
332 B
TypeScript
Raw Normal View History

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
const ROUTES = {
LOGIN: {
path: '/login',
name: 'Login'
},
REGISTER: {
path: '/register',
name: 'Register'
},
DASHBOARD: {
path: '/',
name: 'Dashboard'
}
};
export default ROUTES;