blob: e10edacc5fe1efac03df8dd1c65a4b3c0e297e11 (
plain)
1
2
3
4
5
6
7
8
|
export default {
home: '/',
login: '/login',
registration: '/registration',
profile: (username: string = '') => `/profile/${username.toLowerCase()}`,
feed: '/feed',
notifications: '/notifications'
};
|