From e319761b3f8236936c29c927621934139e5b9985 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 24 Aug 2023 12:00:55 +0300 Subject: [PATCH] feat: create component for ValidatorSetup --- .../ValidatorOnboarding/ValidatorSetup.tsx | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/ValidatorSetup.tsx diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup.tsx new file mode 100644 index 00000000..167c62b8 --- /dev/null +++ b/src/pages/ValidatorOnboarding/ValidatorSetup.tsx @@ -0,0 +1,23 @@ +import { Button, Shadow } from '@status-im/components' +import { Stack } from 'tamagui' + +const ValidatorSetup = () => { + return ( + <> + + + + + + ) +} + +export default ValidatorSetup