Skip to content

Instantly share code, notes, and snippets.

@leandroh
Created March 28, 2016 16:23
Show Gist options
  • Save leandroh/a1ea63d6480fb81bd2b2 to your computer and use it in GitHub Desktop.
Save leandroh/a1ea63d6480fb81bd2b2 to your computer and use it in GitHub Desktop.
Angular app main module
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