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 { Stack, YStack } from 'tamagui'
|
||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
||||
import { YStack } from 'tamagui'
|
||||
|
||||
const Activation = () => {
|
||||
return (
|
||||
<>
|
||||
<ValidatorBoxWrapper>
|
||||
<YStack></YStack>
|
||||
</ValidatorBoxWrapper>
|
||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
||||
<Button>Continue</Button>
|
||||
</Stack>
|
||||
</>
|
||||
)
|
||||
return <YStack></YStack>
|
||||
}
|
||||
|
||||
export default Activation
|
||||
|
|
|
@ -1,18 +1,7 @@
|
|||
import { Button } from '@status-im/components'
|
||||
import { Stack, YStack } from 'tamagui'
|
||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
||||
import { YStack } from 'tamagui'
|
||||
|
||||
const KeyGeneration = () => {
|
||||
return (
|
||||
<>
|
||||
<ValidatorBoxWrapper>
|
||||
<YStack space={'$2'}></YStack>
|
||||
</ValidatorBoxWrapper>
|
||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
||||
<Button>Continue</Button>
|
||||
</Stack>
|
||||
</>
|
||||
)
|
||||
return <YStack space={'$2'}></YStack>
|
||||
}
|
||||
|
||||
export default KeyGeneration
|
||||
|
|
|
@ -1,18 +1,7 @@
|
|||
import { Button } from '@status-im/components'
|
||||
import { Stack, YStack } from 'tamagui'
|
||||
import ValidatorBoxWrapper from '../ValidatorBoxWrapper/ValidatorBoxWrapper'
|
||||
import { YStack } from 'tamagui'
|
||||
|
||||
const ValidatorSetup = () => {
|
||||
return (
|
||||
<>
|
||||
<ValidatorBoxWrapper>
|
||||
<YStack></YStack>
|
||||
</ValidatorBoxWrapper>
|
||||
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
|
||||
<Button>Continue</Button>
|
||||
</Stack>
|
||||
</>
|
||||
)
|
||||
return <YStack></YStack>
|
||||
}
|
||||
|
||||
export default ValidatorSetup
|
||||
|
|
Loading…
Reference in New Issue