10 lines
304 B
TypeScript
Raw Normal View History

2018-05-27 23:17:07 +09:00
import { SensorListComponent } from './list/list.component';
2018-05-28 12:23:09 +09:00
import { SensorDetailComponent } from './detail/detail.component';
2018-05-28 14:32:04 +09:00
import { SensorSettingComponent } from './setting/setting.component';
2018-04-06 20:02:18 +09:00
2018-04-10 21:37:09 +09:00
export const COMPONENTS = [
2018-05-27 23:17:07 +09:00
SensorListComponent,
2018-05-28 12:23:09 +09:00
SensorDetailComponent,
2018-05-28 14:32:04 +09:00
SensorSettingComponent,
2018-04-10 21:37:09 +09:00
];