diff --git a/src/pages/ValidatorManagement/ManagementCard.stories.ts b/src/pages/ValidatorManagement/ManagementCard.stories.ts deleted file mode 100644 index 1fd17c36..00000000 --- a/src/pages/ValidatorManagement/ManagementCard.stories.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - -import ManagementCard from './ManagementCard' - -const meta = { - title: 'ValidatorManagement/ManagementCard', - component: ManagementCard, - parameters: { - layout: 'centered', - }, - tags: ['autodocs'], -} satisfies Meta - -export default meta -type Story = StoryObj - -export const Default: Story = { - args: {}, -} diff --git a/src/pages/ValidatorManagement/ManagementCard.tsx b/src/pages/ValidatorManagement/ManagementCard.tsx deleted file mode 100644 index 24659b4e..00000000 --- a/src/pages/ValidatorManagement/ManagementCard.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Text } from '@status-im/components' -import { Separator, Stack, YStack } from 'tamagui' - -const ManagementCard = () => { - return ( - - - - Validators - - - - - - Total Balance - - - - - - Total Income - - - - ) -} - -export default ManagementCard