diff --git a/client/src/common/registerWizard.js b/client/src/common/registerWizard.js new file mode 100644 index 000000000..b7dedb9f3 --- /dev/null +++ b/client/src/common/registerWizard.js @@ -0,0 +1,16 @@ + + +export const registerWizardSteps = [ + { + label: 'organization_register', + }, + { + label: 'payment_or_trial', + }, + { + label: 'getting_started', + }, + { + label: 'initializing', + }, +]; \ No newline at end of file diff --git a/client/src/containers/Authentication/Register/RegisterWizardSteps.js b/client/src/containers/Authentication/Register/RegisterWizardSteps.js index 3d390ffaf..b21a58a89 100644 --- a/client/src/containers/Authentication/Register/RegisterWizardSteps.js +++ b/client/src/containers/Authentication/Register/RegisterWizardSteps.js @@ -1,32 +1,32 @@ import React from 'react'; -import { FormattedMessage as T, useIntl } from 'react-intl'; +import classNames from 'classnames'; +import { FormattedMessage as T } from 'react-intl'; +import { registerWizardSteps } from 'common/registerWizard' -function RegisterWizardSteps() { +function RegisterWizardStep({ + label, + isActive = false +}) { + return ( +
-
-
-
-