From df45456adc6c2fda771638e6c8cfcde713a35d50 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 25 Aug 2023 13:41:13 +0300 Subject: [PATCH] feat: add title for key generation --- .../KeyGeneration/KeyGenerationTitle.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.tsx diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.tsx new file mode 100644 index 00000000..c8c02cab --- /dev/null +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.tsx @@ -0,0 +1,11 @@ +import { Text } from '@status-im/components' + +const KeyGenerationTitle = () => { + return ( + + Key Generation + + ) +} + +export default KeyGenerationTitle