diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx index aa4f43d6..cb0ba691 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGeneration.tsx @@ -1,10 +1,12 @@ import { YStack } from 'tamagui' import KeyGenerationHeader from './KeyGenerationHeader' +import RecoveryMechanism from './RecoveryMechanism' const KeyGeneration = () => { return ( + ) } diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx new file mode 100644 index 00000000..5c8eb84f --- /dev/null +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanism.tsx @@ -0,0 +1,32 @@ +import { Text } from '@status-im/components' +import { XStack } from 'tamagui' +import BorderBox from '../../../components/General/BorderBox' + +const RecoveryMechanism = () => { + return ( + + + Select Recovery Mechanism + + + + + Key Files + + + + + Recovery Phrase + + + + + Both Key Files & Recovery Phrase + + + + + ) +} + +export default RecoveryMechanism