diff --git a/src/components/General/RightSideBar/RightSidebar.tsx b/src/components/General/RightSideBar/RightSidebar.tsx index 8f0cfdfd..0f7bbb37 100644 --- a/src/components/General/RightSideBar/RightSidebar.tsx +++ b/src/components/General/RightSideBar/RightSidebar.tsx @@ -1,12 +1,12 @@ -import { Avatar, Tabs, Text } from '@status-im/components' +import { Avatar, Text } from '@status-im/components' import { XStack, YStack } from 'tamagui' import AddCard from '../AddCards/AddCard' -import ValidatorsList from './ValidatorsList' import AlertsList from './AlertsList' import LogsList from './LogsList' import DiamondCard from './DiamondCard' import ValidatorsCount from './ValidatorsCount' +import ValidatorsTabs from './ValidatorsTabs' import { getFormattedWalletAddress } from '../../../utilities' import styles from './RightSidebar.module.css' @@ -38,28 +38,7 @@ const RightSidebar = () => { - - - - Active - - - Pending - - - Inactive - - - - - - - - - - - - + diff --git a/src/components/General/RightSideBar/ValidatorsTabs.tsx b/src/components/General/RightSideBar/ValidatorsTabs.tsx new file mode 100644 index 00000000..fd8d6b14 --- /dev/null +++ b/src/components/General/RightSideBar/ValidatorsTabs.tsx @@ -0,0 +1,32 @@ +import { Tabs } from '@status-im/components' + +import ValidatorsList from './ValidatorsList' + +const ValidatorsTabs = () => { + return ( + + + + Active + + + Pending + + + Inactive + + + + + + + + + + + + + ) +} + +export default ValidatorsTabs