diff --git a/src/pages/Dashboard/Dashboard.tsx b/src/pages/Dashboard/Dashboard.tsx index 7da81e40..8d728ed9 100644 --- a/src/pages/Dashboard/Dashboard.tsx +++ b/src/pages/Dashboard/Dashboard.tsx @@ -1,7 +1,7 @@ import { XStack, YStack } from 'tamagui' import LeftSidebar from './LeftSidebar' -import RightSidebar from './RightSidebar' +import RightSidebar from './RightSideBar/RightSidebar' import BasicInfoCards from './BasicInfoCards/BasicInfoCards' import AddCardsContainer from '../../components/General/AddCards/AddCardsContainer' import BalanceChartCard from './BalanceChartCard/BalanceChartCard' diff --git a/src/pages/Dashboard/RightSideBar/RightSidebar.tsx b/src/pages/Dashboard/RightSideBar/RightSidebar.tsx new file mode 100644 index 00000000..3457612c --- /dev/null +++ b/src/pages/Dashboard/RightSideBar/RightSidebar.tsx @@ -0,0 +1,51 @@ +import { Avatar, Tabs, Text } from '@status-im/components' +import { XStack, YStack } from 'tamagui' +import ValidatorListItem from './ValidatorListItem' +// import { NodeIcon } from '@status-im/icons' + +const RightSidebar = () => { + return ( + + + + + + Etherium Mainnet + + 0xb9d...c35 + + + + + + + Active + + + Pending + + + Inactive + + + + + + + + + + + + + + + ) +} + +export default RightSidebar diff --git a/src/pages/Dashboard/RightSidebar.tsx b/src/pages/Dashboard/RightSidebar.tsx deleted file mode 100644 index c1b5b0ee..00000000 --- a/src/pages/Dashboard/RightSidebar.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { SidebarMembers } from '@status-im/components' -import { YStack } from 'tamagui' - -const RightSidebar = () => { - return ( - - - - ) -} - -export default RightSidebar