From 228d7a2932a0c7b72fde65c05e9da5545782ba7b Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 24 Aug 2023 11:53:01 +0300 Subject: [PATCH] feat: create component for key generation page --- .../ValidatorOnboarding/KeyGeneration.tsx | 23 +++++++++++++++++++ .../ValidatorOnboarding.tsx | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/KeyGeneration.tsx diff --git a/src/pages/ValidatorOnboarding/KeyGeneration.tsx b/src/pages/ValidatorOnboarding/KeyGeneration.tsx new file mode 100644 index 00000000..fe88cae0 --- /dev/null +++ b/src/pages/ValidatorOnboarding/KeyGeneration.tsx @@ -0,0 +1,23 @@ +import { Button, Shadow } from '@status-im/components' +import { Stack } from 'tamagui' + +const KeyGeneration = () => { + return ( + <> + + + + + + ) +} + +export default KeyGeneration diff --git a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx index 9b1c3e60..98f831f6 100644 --- a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx @@ -4,6 +4,7 @@ import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradie import Titles from '../../components/General/Titles' import { useState } from 'react' import Overview from './Overview' +import KeyGeneration from './KeyGeneration' const ValidatorOnboarding = () => { const [activeStep, setActiveStep] = useState(0) @@ -30,6 +31,7 @@ const ValidatorOnboarding = () => { /> {activeStep === 0 && } + {activeStep === 3 && } )