♻️ Extract UI configuration to separate files

This commit is contained in:
Philipp Stracker 2025-01-16 15:03:46 +01:00
parent 484356dcc0
commit c16e5e4c58
No known key found for this signature in database
8 changed files with 187 additions and 176 deletions

View file

@ -0,0 +1,26 @@
/**
* Configuration for UI components.
*
* @file
*/
/**
* Onboarding options for StepBusiness
*
* @type {Object}
*/
export const BUSINESS_TYPES = {
CASUAL_SELLER: 'casual_seller',
BUSINESS: 'business',
};
/**
* Onboarding options for StepProducts
*
* @type {Object}
*/
export const PRODUCT_TYPES = {
VIRTUAL: 'virtual',
PHYSICAL: 'physical',
SUBSCRIPTIONS: 'subscriptions',
};