JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://momentjs.com/downloads/moment-with-locales.js"></script>

JavaScript

let l = moment().locale('en');
console.log(l.localeData().longDateFormat('L'));
l = moment().locale('es');
console.log(l.localeData().longDateFormat('L'));