mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
12 lines
464 B
TypeScript
12 lines
464 B
TypeScript
/**
|
|
* Register all routes here for easy future modification.
|
|
* Paths must start with '/'
|
|
*/
|
|
export const LANDING: string = '/';
|
|
export const SIGN_UP: string = '/signup';
|
|
export const SIGN_IN: string = '/signin';
|
|
export const DEVELOPERS: string = '/developers';
|
|
export const PROFILE: string = '/profile';
|
|
export const EDIT_PROFILE: string = '/edit-profile';
|
|
export const DASHBOARD: string = '/dashboard';
|
|
export const ADD_EXPERIENCE: string = '/add-experience';
|