feat: render 24 autocomplete inputs
This commit is contained in:
parent
295c25e582
commit
e8f55ba18d
|
@ -1,7 +1,11 @@
|
|||
import AutocompleteInput from './AutocompleteInput'
|
||||
|
||||
const ConfirmRecoveryPhrase = () => {
|
||||
return (
|
||||
<div>
|
||||
{Array.from({ length: 24 }).map((_, index) => (
|
||||
<AutocompleteInput key={index} index={index} />
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue