1
I have the following constant:
const: lista = [{
id: 1,
poke: 'Pikachu',
desc: 'Pokemon do tipo elétrico',
}, {
id: 2,
poke: 'Squirtle',
desc: 'Pokemon do tipo água',
}]
And I need a component to receive this data as props, but I don’t know the syntax to receive this data as props in another component.