var angular = require('angular')
angular
.module('FrameworksApp', [])
.directive('bestFrameworks', function () {
return {
restrict: 'A',
controller: 'FrameworksController',
template: `
`
}
})
.controller('FrameworksController', function ($scope) {
$scope.message = 'default'
$scope.hello = function () {
$scope.message = 'hello browser-monkey'
}
})
module.exports = {
directiveName: 'best-frameworks',
moduleName: 'FrameworksApp'
}