15 lines
435 B
TypeScript
15 lines
435 B
TypeScript
export const ROUTE_NAMES = {
|
|
Login: 'CmsLogin',
|
|
ProductDetail: 'ProductDetail',
|
|
ProductVariantDetail: 'ProductVariantDetail',
|
|
Products: 'Products',
|
|
Categories: 'Categories',
|
|
DiscountCodes: 'DiscountCodes',
|
|
ShopSettings: 'ShopSettings',
|
|
Notifications: 'Notifications',
|
|
MoneroWallet: 'MoneroWallet',
|
|
BitcoinWallet: 'BitcoinWallet',
|
|
Orders: 'Orders',
|
|
OrderDetail: 'OrderDetail'
|
|
} as const;
|