2016-06-07 16:45:13 -07:00

7 lines
136 B
TypeScript

declare var angular: any;
angular.module('heroApp', [])
.controller('MainCtrl', function() {
this.message = 'Hello world';
});