angular-cn/aio/content/examples/upgrade-phonecat-2-hybrid/app/app.module.ajs.ts

12 lines
180 B
TypeScript
Raw Normal View History

// #docregion
'use strict';
// Define the `phonecatApp` AngularJS module
angular.module('phonecatApp', [
'ngAnimate',
'ngRoute',
'core',
'phoneDetail',
'phoneList',
]);