Add header of page
This commit is contained in:
parent
e9e08a09f8
commit
e76bf01361
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue