member_webapp/@overflow/noauth-probe/component/index.ts

10 lines
359 B
TypeScript
Raw Normal View History

2018-05-28 05:41:56 +00:00
import { NoAuthProbeListComponent } from './noauth-probe-list.component';
2018-06-14 05:35:59 +00:00
import { NoAuthProbeDetailComponent } from './noauth-probe-detail.component';
2018-06-14 06:45:39 +00:00
import { NoAuthProbeGeneralComponent } from './noauth-probe-general.component';
2018-04-06 11:02:18 +00:00
2018-04-11 06:20:23 +00:00
export const COMPONENTS = [
2018-05-18 11:29:16 +00:00
NoAuthProbeListComponent,
2018-06-14 06:45:39 +00:00
NoAuthProbeDetailComponent,
NoAuthProbeGeneralComponent,
2018-04-11 06:20:23 +00:00
];