Add header of page
This commit is contained in:
parent
e9e08a09f8
commit
e76bf01361
|
@ -1,10 +1,17 @@
|
||||||
import { YStack } from 'tamagui'
|
import { YStack } from 'tamagui'
|
||||||
import PairedDeviceCard from './PairedDeviceCard'
|
import PairedDeviceCard from './PairedDeviceCard'
|
||||||
|
import { XStack } from 'tamagui'
|
||||||
|
import { Text } from '@status-im/components'
|
||||||
|
|
||||||
const ValidatorSetup = () => {
|
const ValidatorSetup = () => {
|
||||||
return (
|
return (
|
||||||
<YStack>
|
<YStack style={{ width: '100%' }}>
|
||||||
<PairedDeviceCard />
|
<XStack justifyContent={'space-between'}>
|
||||||
|
<Text size={27} weight={'semibold'}>
|
||||||
|
Validator Setup
|
||||||
|
</Text>
|
||||||
|
<PairedDeviceCard />
|
||||||
|
</XStack>
|
||||||
</YStack>
|
</YStack>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue