2018-05-18 08:30:20 +00:00
|
|
|
import { ProbeDetailComponent } from './detail/detail.component';
|
|
|
|
import { ProbeListComponent } from './list/list.component';
|
|
|
|
import { ProbeDownloadComponent } from './download/download.component';
|
|
|
|
import { ProbeListContainerComponent } from '../container/probe-list-container';
|
|
|
|
import { ProbeDetailContainerComponent } from '../container/probe-detail-container';
|
|
|
|
|
|
|
|
export const CONTAINERS = [
|
|
|
|
ProbeListContainerComponent,
|
|
|
|
ProbeDetailContainerComponent,
|
|
|
|
];
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-06 13:02:46 +00:00
|
|
|
export const COMPONENTS = [
|
2018-05-18 08:30:20 +00:00
|
|
|
ProbeListComponent,
|
|
|
|
ProbeDetailComponent,
|
|
|
|
ProbeDownloadComponent,
|
2018-04-06 13:02:46 +00:00
|
|
|
];
|