8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
|
import { SensorListContainerComponent } from './sensor-list-container';
|
||
|
import { SensorDetailContainerComponent } from './sensor-detail-container';
|
||
|
|
||
|
export const CONTAINER_COMPONENTS = [
|
||
|
SensorListContainerComponent,
|
||
|
SensorDetailContainerComponent
|
||
|
];
|