url-helpers.ts 103 B

12345
  1. export const getUrl = (url: string) => {
  2. let prefix = 'dashboard';
  3. return `/${prefix}/${url}`;
  4. };