15 lines
620 B
TypeScript
15 lines
620 B
TypeScript
import { ListSectionComponent } from './list.section.component';
|
|
import { SearchSectionComponent } from './search.section.component';
|
|
import { ProfileSectionComponent } from './profile.section.component';
|
|
import { InfoSectionComponent } from './info.section.component';
|
|
import { SelectUserSectionComponent } from './select-user.section.component';
|
|
import { SelectGroupSectionComponent } from './select-group.section.component';
|
|
export const COMPONENTS = [
|
|
ListSectionComponent,
|
|
SearchSectionComponent,
|
|
ProfileSectionComponent,
|
|
InfoSectionComponent,
|
|
SelectUserSectionComponent,
|
|
SelectGroupSectionComponent
|
|
];
|