Last active
May 5, 2017 15:33
-
-
Save maciej-gurban/e7085601f8f4139a291a4d1fe41b2bb8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//(function(){ | |
const app = angular.module('myApp', []); | |
angular.module('myApp').component('foobar', { | |
controller: function() { | |
this.foo = 100; | |
}, | |
template: `This is Angular app!`, | |
}); | |
//})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment