feat: remove unusable components
remove old parts from components after make one abstract in the parent
This commit is contained in:
parent
260f23c714
commit
68d1d3924f
|
@ -1,18 +1,7 @@
|
||||||
import { Button } from '@status-im/components'
|
import { YStack } from 'tamagui'
|
||||||
import { Stack, YStack } from 'tamagui'
|
|
||||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
|
||||||
|
|
||||||
const Activation = () => {
|
const Activation = () => {
|
||||||
return (
|
return <YStack></YStack>
|
||||||
<>
|
|
||||||
<ValidatorBoxWrapper>
|
|
||||||
<YStack></YStack>
|
|
||||||
</ValidatorBoxWrapper>
|
|
||||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
|
||||||
<Button>Continue</Button>
|
|
||||||
</Stack>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Activation
|
export default Activation
|
||||||
|
|
|
@ -1,18 +1,7 @@
|
||||||
import { Button } from '@status-im/components'
|
import { YStack } from 'tamagui'
|
||||||
import { Stack, YStack } from 'tamagui'
|
|
||||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
|
||||||
|
|
||||||
const KeyGeneration = () => {
|
const KeyGeneration = () => {
|
||||||
return (
|
return <YStack space={'$2'}></YStack>
|
||||||
<>
|
|
||||||
<ValidatorBoxWrapper>
|
|
||||||
<YStack space={'$2'}></YStack>
|
|
||||||
</ValidatorBoxWrapper>
|
|
||||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
|
||||||
<Button>Continue</Button>
|
|
||||||
</Stack>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default KeyGeneration
|
export default KeyGeneration
|
||||||
|
|
|
@ -1,18 +1,7 @@
|
||||||
import { Button } from '@status-im/components'
|
import { YStack } from 'tamagui'
|
||||||
import { Stack, YStack } from 'tamagui'
|
|
||||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
|
||||||
|
|
||||||
const ValidatorSetup = () => {
|
const ValidatorSetup = () => {
|
||||||
return (
|
return <YStack></YStack>
|
||||||
<>
|
|
||||||
<ValidatorBoxWrapper>
|
|
||||||
<YStack></YStack>
|
|
||||||
</ValidatorBoxWrapper>
|
|
||||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
|
||||||
<Button>Continue</Button>
|
|
||||||
</Stack>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ValidatorSetup
|
export default ValidatorSetup
|
||||||
|
|
Loading…
Reference in New Issue