refactor(right-panel): create separate folder

This commit is contained in:
RadoslavDimchev 2024-02-19 21:27:05 +02:00 committed by Emil Ivanichkov
parent 0897201687
commit 658f8ea140
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import { XStack, YStack } from 'tamagui'
import { Stack } from 'tamagui'
import RightPanel from './RightPanel'
import RightPanel from './RightPanel/RightPanel'
import ValidatorInfo from './ValidatorInfo'
import DepositStatus from './DepositStatus'
import Header from './Header'
@ -31,7 +31,7 @@ const ManageValidator = () => {
<ValidatorDataTabs />
<Footer />
</Stack>
<RightPanel></RightPanel>
<RightPanel />
</XStack>
)
}

View File

@ -1,5 +1,5 @@
import { YStack } from 'tamagui'
import Icon from '../../../components/General/Icon'
import Icon from '../../../../components/General/Icon'
import { Text } from '@status-im/components'
const RightPanel = () => {