feat: remove unusable components

remove old parts from components after make one abstract in the parent
This commit is contained in:
RadoslavDimchev 2023-08-25 10:51:47 +03:00
parent 260f23c714
commit 68d1d3924f
3 changed files with 6 additions and 39 deletions

View File

@ -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

View File

@ -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

View File

@ -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