This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/src/config/routing.ts

10 lines
233 B
TypeScript
Raw Normal View History

export const ROUTE = {
SIGN_IN_PAGE: '/',
DASHBOARD_PAGE: '/dashboard',
};
export const PUBLIC_ROUTES = [ROUTE.SIGN_IN_PAGE];
export const ADMIN_ROUTES = Object.values(ROUTE).filter(
route => !PUBLIC_ROUTES.includes(route)
);