From 8224b5f24e7cf3c725aadf628829aa60e39927e4 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Mon, 22 Apr 2024 21:19:40 +0300 Subject: [PATCH] fix(management-card): delete old component and story --- .../ManagementCard.stories.ts | 19 ---------- .../ValidatorManagement/ManagementCard.tsx | 35 ------------------- 2 files changed, 54 deletions(-) delete mode 100644 src/pages/ValidatorManagement/ManagementCard.stories.ts delete mode 100644 src/pages/ValidatorManagement/ManagementCard.tsx 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