mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-08 17:43:48 +00:00
fix: return other content of page state
This commit is contained in:
parent
0ce5e3350a
commit
3ebf7c35c6
@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user