Add header of page

This commit is contained in:
Hristo Nedelkov 2023-08-25 12:59:42 +03:00
parent e9e08a09f8
commit e76bf01361
1 changed files with 9 additions and 2 deletions

View File

@ -1,10 +1,17 @@
import { YStack } from 'tamagui'
import PairedDeviceCard from './PairedDeviceCard'
import { XStack } from 'tamagui'
import { Text } from '@status-im/components'
const ValidatorSetup = () => {
return (
<YStack>
<PairedDeviceCard />
<YStack style={{ width: '100%' }}>
<XStack justifyContent={'space-between'}>
<Text size={27} weight={'semibold'}>
Validator Setup
</Text>
<PairedDeviceCard />
</XStack>
</YStack>
)
}