We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6623f9 commit 1735f43Copy full SHA for 1735f43
src/ng2client/app/components/adminCustomerList/adminCustomerList.ts
@@ -1,13 +1,12 @@
1
import {Component, OnInit} from 'angular2/core';
2
-import {AdminCustomerListItemComponent} from '../adminCustomerListItem/adminCustomerListItem';
3
import {CustomerModel} from '../../model/customerModel';
4
import {CustomerApiService} from '../../services/customerApiService';
5
import {RouterLink} from 'angular2/router';
6
7
@Component({
8
selector: 'nfn-admin-customer-list',
9
templateUrl: 'app/components/adminCustomerList/adminCustomerList.html',
10
- directives: [AdminCustomerListItemComponent, RouterLink]
+ directives: [RouterLink]
11
})
12
export class AdminCustomerListComponent implements OnInit {
13
public customers: Array<CustomerModel> = [];
0 commit comments