How to create a search bar for a list of strings and filter content by alphabet character from TextInput component?The search bar must works by updating the search state each time text is entered or changed in the text field.
const alphabetCharacters: string[] = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','#',];const searchPeople = () => {};<TextInput onChange={searchPeople} value='' placeholder='Typ een voornaam' keyboardType='default' returnKeyType='done' newDesign={true} />