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

12 lines
180 B
TypeScript
Raw Normal View History

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