JSFiddle - React, Tailwind, and code Playground

HTML

<article ng-app>
    <div ng-controller="myController" ng-init="params.datetime = new Date()">Current time: {{params.datetime}}</div>
</article>

JavaScript

function myController($scope) {
    $scope.params = {
        datetime: null
    }
}