10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
|
// #docregion
|
||
|
// Define the `phonecatApp` AngularJS module
|
||
|
angular.module('phonecatApp', [
|
||
|
'ngAnimate',
|
||
|
'ngRoute',
|
||
|
'core',
|
||
|
'phoneDetail',
|
||
|
'phoneList',
|
||
|
]);
|