11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
|
'use strict';
|
||
|
|
||
|
// Define the `phonecatApp` module
|
||
|
angular.module('phonecatApp', [
|
||
|
'ngAnimate',
|
||
|
'ngRoute',
|
||
|
'core',
|
||
|
'phoneDetail',
|
||
|
'phoneList',
|
||
|
]);
|