I am new to AngularJS and trying to integrate the Angular Material Date Picker with AngularJS but I can't see the calendar(controller/date.controller.js, views/calendar.html).Please find the link of plunkr(whole app) and let me know your suggestions.
http://plnkr.co/edit/cHXi8EBfrhcTfwBvJ5nU?p=preview Below is the controller
'use strict';
angular.module('plunkr', ['ngMaterial' , 'ngMessages']).controller('mycont', function(){
this.myDate = new Date();
this.isOpen = false;
});