17 lines
564 B
TypeScript
Raw Normal View History

2018-05-18 17:30:20 +09: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 20:02:18 +09:00
2018-04-06 22:02:46 +09:00
export const COMPONENTS = [
2018-05-18 17:30:20 +09:00
ProbeListComponent,
ProbeDetailComponent,
ProbeDownloadComponent,
2018-04-06 22:02:46 +09:00
];