0
I need to take objects from Java arrays that I receive from the backend and transfer them to other objects to be able to use in the React-select library.
My object comes from the backend like this:
[
{ nome: 'Fulano', setor: 'Produção', filial: 1 },
{ nome: 'Ciclano', setor: 'Administrativo', filial: 2 },
{ nome: 'Maria', setor: 'Produção', filial: 1 }
]
To work on React-Select, it should look like this:
[
{ values: { nome: 'Fulano', setor: 'Produção', filial: 1 }, label: 'Fulano'},
{ values: { nome: 'Ciclano', setor: 'Administrativo', filial: 2 }, label: 'Ciclano'},
{ values: { nome: 'Maria', setor: 'Produção', filial: 1 }, label: 'Maria'}
]