JSFiddle - React, Tailwind, and code Playground
HTML
<html ng-app="myApp" ng-controller="AppCtrl">
<head>
<title>AngularJS</title>
<link rel="stylesheet" type="text/css" href="themes/base/jquery-ui.css" />
</head>
<body>
<h2>Birthday: {{ birthday | date:'dd MMMM yyyy' }}</h2>
<label>Birthday:</label>
<input ui-date="yy-mm-dd" ng-model="birthday" />
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<script src="https://raw.github.com/angular-ui/angular-ui/v0.3.2/build/angular-ui.js"></script>
<script>
function AppCtrl($scope) {
$scope.birthday = new Date();
}
angular.module("myApp", ["ui"]);
</script>
</body>
</html>