Skip to content
Advertisement

Error in Next JS REACT: Objects are not valid as a React child. Just want to use dates

I want to convert this { passagens.departure_date } into date like 1 nov, 2 dez examples. This { passagens.departure_date } is like this value: 2022-10-02T00:00:00Z. I just want to pick the right date in strings.

I Try everything. This is my code Also i did the function pegaDia

JavaScript
JavaScript

Advertisement

Answer

Seems you want something like this…

First, create a date formatter for your locale (or a specific one if you want)

JavaScript

Then use it to format your dates

JavaScript

You could automatically parse the date strings when setting your data to avoid calling new Date() every render

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement