I create an array of array of object and I would like to find out a way to map into it. This is the array I have and want to map into just to return the name and the description:
const frenchList = {
u: [{
id: 1,
rating: 5,
name: 'Uranophobie',
description: 'Peur des cieux.',
}, {
id: 2,
rating: 5,
name: 'Urinophobie',
}],
v: [{
id: 3,
rating: 5,
name: 'Vermiphobie',
description: 'Peur des vers.',
}],
};