Skip to content

Instantly share code, notes, and snippets.

@IgorDePaula
Created June 8, 2020 01:19
Show Gist options
  • Save IgorDePaula/cdec9c87c50ff119093f48e077452926 to your computer and use it in GitHub Desktop.
Save IgorDePaula/cdec9c87c50ff119093f48e077452926 to your computer and use it in GitHub Desktop.
const Comp = () => {
let listUfs = ufs.map(uf =>{
return { label: uf, value: uf }
})
return <RNPickerSelect
onValueChange={(value) => console.log(value)}
items={listUfs}
/>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment