diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationHeader.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationHeader.tsx index c38e5226..886528f3 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationHeader.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationHeader.tsx @@ -1,13 +1,11 @@ -import { Text } from '@status-im/components' import { XStack } from 'tamagui' import SyncCard from './SyncCard' +import KeyGenerationTitle from './KeyGenerationTitle' const KeyGenerationHeader = () => { return ( - - Key Generation - + diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.stories.ts b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.stories.ts new file mode 100644 index 00000000..b7da7215 --- /dev/null +++ b/src/pages/ValidatorOnboarding/KeyGeneration/KeyGenerationTitle.stories.ts @@ -0,0 +1,20 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import KeyGenerationTitle from './KeyGenerationTitle' + +const meta = { + title: 'ValidatorOnboarding/KeyGenerationTitle', + component: KeyGenerationTitle, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], + argTypes: {}, +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Page: Story = { + args: {}, +}