I just migrate my working app from react to nextjs. I followed the tutorial provided by next and installed next-i18next but I'm not being able to map
I got this kind of object
"skills": {
"title": "Skills",
"items": [
{
"title": "Javascript",
"additionalInfo": [
"React",
"Node"
]
}
]
}
and i need to parse the translation into this component
{t("skills.items", { returnObjects: true }).map(
({ title, additionalInfo }, index) => (
<Fragment key={index}>
<TitleRow>
<p>{title}</p>
</TitleRow>
...
Any ideas on what i missed in the migration?