I'm making a calendar in Portuguese on ReactJS.
Despite being something simple, I'm not able to change my library date "moment.js" to be in the portuguese language (brazil).
Already tried code:
<strong>{moment(currentDate).locale('pt-br').format('LLLL')}</strong>
But I don't work, it keeps bringing the date in English.
1:
This is the date format code:
const [currentDate, setCurrentDate] = useState(new Date())
<Col>
<strong>{moment(currentDate).format('LLLL')}</strong>
</Col>
How do I make the date stay in Portuguese(Brazil)?