From 0ff94d94380c67388f4a1c14356949637db75119 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Wed, 30 Aug 2023 20:26:19 +0300 Subject: [PATCH] Create third page for validator setup --- .../ValidatorSetup/ConsensusSelection.tsx | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx new file mode 100644 index 00000000..45359435 --- /dev/null +++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx @@ -0,0 +1,46 @@ +import { XStack, Stack, Text as TextTam, YStack } from 'tamagui' +import PairedDeviceCard from './PairedDeviceCard' +import { Text } from '@status-im/components' +import ExecClientCard from './ExecClientCard' +import { Link } from 'react-router-dom' + +const ConsensusSelection = () => { + return ( + + + + Validator Setup + + + + + + + + Execution Client Detection + + + + No existing execution client installations have been detected on paired device. + + + If you believe this to be incorrect please test your pairing to the correct device and try + again. + + + + + Select Execution client + + + + + + View Execution client comparison chart + + + + ) +} + +export default ConsensusSelection