feat: render 24 autocomplete inputs

This commit is contained in:
RadoslavDimchev 2023-09-01 14:04:20 +03:00
parent 295c25e582
commit e8f55ba18d
1 changed files with 4 additions and 0 deletions

View File

@ -1,7 +1,11 @@
import AutocompleteInput from './AutocompleteInput'
const ConfirmRecoveryPhrase = () => {
return (
<div>
{Array.from({ length: 24 }).map((_, index) => (
<AutocompleteInput key={index} index={index} />
))}
</div>
)
}