mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 22:08:27 +00:00
16 lines
242 B
TypeScript
16 lines
242 B
TypeScript
export function confirmBasicDetailsPath() {
|
|
return `/confirm-basic-details`;
|
|
}
|
|
|
|
export function homePath() {
|
|
return `/home`;
|
|
}
|
|
|
|
export function dashboardPath() {
|
|
return `/home/dashboard`;
|
|
}
|
|
|
|
export function rootPath() {
|
|
return `/`;
|
|
}
|