10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import { DetailComponent } from './detail/detail.component';
|
|
import { ListComponent } from './list/list.component';
|
|
import { FilterComponent } from './list/filter/filter.component';
|
|
|
|
export const COMPONENTS = [
|
|
ListComponent,
|
|
DetailComponent,
|
|
FilterComponent
|
|
];
|