fix: return other content of page state

This commit is contained in:
RadoslavDimchev 2023-09-01 14:22:14 +03:00
parent 0ce5e3350a
commit 3ebf7c35c6

View File

@ -1,12 +1,27 @@
import { Stack, YStack } from 'tamagui'
import AutocompleteInput from './AutocompleteInput'
import { Text } from '@status-im/components'
import KeyGenerationTitle from './KeyGenerationTitle'
const ConfirmRecoveryPhrase = () => {
return (
<div>
{Array.from({ length: 24 }).map((_, index) => (
<AutocompleteInput key={index} index={index} />
))}
</div>
<YStack space={'$4'} style={{ width: '100%', marginTop: '20px' }}>
<KeyGenerationTitle />
<Text size={27}>Confirm Recovery Phrase</Text>
<Stack
style={{
display: 'grid',
gridTemplateColumns: 'repeat(4, 1fr)',
gap: '20px 40px',
width: '80%',
marginBottom: '20px',
}}
>
{Array.from({ length: 24 }).map((_, index) => (
<AutocompleteInput key={index} index={index} />
))}
</Stack>
</YStack>
)
}