I am trying the keep route url's in an enum like below.
export enum RouteUrls {
HOME = '/home',
DASHBOARD = `${HOME}/dashboard` // error here
}
In the above line I am getting error as "Computed values are not permitted in an enum with string valued members.", is there any other way to achieve the same using Enum in TypeScript.