Created
March 28, 2016 16:23
-
-
Save leandroh/a1ea63d6480fb81bd2b2 to your computer and use it in GitHub Desktop.
Angular app main module
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
angular | |
.module('app', []) | |
.controller('miCtrl', miCtrl); | |
function miCtrl ($scope) { | |
$scope.mensaje = "Mensaje desde el Controlador"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment