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

View File

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

View File

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