aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/onboarding/onboarding_flow.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-06-16 09:27:23 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-06-16 09:34:57 +0800
commit8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186 (patch)
tree85266d3d3fc588100b134e1a82de3c82ab6773f9 /packages/website/ts/components/onboarding/onboarding_flow.tsx
parent433f830cf33f6383e83cca5e08b1f58bc18a0828 (diff)
downloaddexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.gz
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.bz2
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.lz
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.xz
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.tar.zst
dexon-sol-tools-8a76fdc126c4e8d8b388d9e50bbc7fb8c7862186.zip
Finish last onboarding step
Diffstat (limited to 'packages/website/ts/components/onboarding/onboarding_flow.tsx')
-rw-r--r--packages/website/ts/components/onboarding/onboarding_flow.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/website/ts/components/onboarding/onboarding_flow.tsx b/packages/website/ts/components/onboarding/onboarding_flow.tsx
index 7a5a6e40f..34aeace82 100644
--- a/packages/website/ts/components/onboarding/onboarding_flow.tsx
+++ b/packages/website/ts/components/onboarding/onboarding_flow.tsx
@@ -13,6 +13,7 @@ export interface Step {
shouldHideBackButton?: boolean;
shouldHideNextButton?: boolean;
continueButtonDisplay?: ContinueButtonDisplay;
+ continueButtonText?: string;
}
export interface OnboardingFlowProps {
@@ -65,6 +66,7 @@ export class OnboardingFlow extends React.Component<OnboardingFlowProps> {
onClickNext={this._goToNextStep.bind(this)}
onClickBack={this._goToPrevStep.bind(this)}
continueButtonDisplay={step.continueButtonDisplay}
+ continueButtonText={step.continueButtonText}
/>
</Container>
);