JSFiddle - React, Tailwind, and code Playground

by Graham Fairweather

HTML

<script src="http://requirejs.org/docs/release/2.1.11/minified/require.js"></script>

JavaScript

require.config({
    paths: {
        moment: 'http://momentjs.com/downloads/moment.min'
    }
});

require(['moment'], function (moment) {
    var x = moment(new Date(2024, 3, 12)).from(new Date());
    
    console.log(x);
});