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