Skip to content

Instantly share code, notes, and snippets.

const finalAction = 'SAVE_SHOPPING_ORDER_SUCCESS';
const milestones = [
'SAVE_USER_PROFILE_SUCCESS',
'SAVE_PAYMENT_OPTIONS_SUCCESS',
'CONFIRM_SHOPPING_BASKET_SELECTION',
// ... and so on ...
];
const steps = {
STEP_A: { url: '/feature_1', nextStep: 'STEP_B' },
STEP_B: { url: '/feature_2', nextStep: 'STEP_C' },
STEP_C: { url: '/feature_3', nextStep: 'STEP_D' },
// ... and so on ...
};