Create confeti effect
This commit is contained in:
parent
fe1c60a71a
commit
242b068cf4
|
@ -1,7 +1,20 @@
|
||||||
import { YStack } from 'tamagui'
|
import { XStack, Stack, YStack } from 'tamagui'
|
||||||
|
import { Text } from '@status-im/components'
|
||||||
|
import Confetti from 'react-confetti'
|
||||||
|
|
||||||
const Activation = () => {
|
const Activation = () => {
|
||||||
return <YStack style={{ padding: '16px 32px' }}></YStack>
|
return (
|
||||||
|
<Stack>
|
||||||
|
<Confetti width={1000} height={800} />
|
||||||
|
<YStack style={{ width: '100%', padding: '16px 32px' }}>
|
||||||
|
<XStack justifyContent={'space-between'} style={{ marginBottom: '10px' }}>
|
||||||
|
<Text size={27} weight={'semibold'}>
|
||||||
|
Validator Setup
|
||||||
|
</Text>
|
||||||
|
</XStack>
|
||||||
|
</YStack>
|
||||||
|
</Stack>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Activation
|
export default Activation
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
import { XStack, Stack, YStack } from 'tamagui'
|
|
||||||
import { Text } from '@status-im/components'
|
|
||||||
import { useState } from 'react'
|
|
||||||
const CompleteSetup = () => {
|
|
||||||
return (
|
|
||||||
<YStack style={{ width: '100%', padding: '16px 32px' }}>
|
|
||||||
<XStack justifyContent={'space-between'} style={{ marginBottom: '10px' }}>
|
|
||||||
<Text size={27} weight={'semibold'}>
|
|
||||||
Validator Setup
|
|
||||||
</Text>
|
|
||||||
</XStack>
|
|
||||||
</YStack>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default CompleteSetup
|
|
Loading…
Reference in New Issue