mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-04 04:40:17 +01:00
28 lines
777 B
TypeScript
28 lines
777 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { UiFeaturesRoutingModule } from './ui-features-routing.module';
|
|
import { UiFeaturesComponent } from './ui-features.component';
|
|
import { GridComponent } from './grid/grid.component';
|
|
import { IconsComponent } from './icons/icons.component';
|
|
import { TypographyComponent } from './typography/typography.component';
|
|
import { SearchComponent } from './search-fields/search-fields.component';
|
|
|
|
const components = [
|
|
UiFeaturesComponent,
|
|
GridComponent,
|
|
IconsComponent,
|
|
TypographyComponent,
|
|
SearchComponent,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ThemeModule,
|
|
UiFeaturesRoutingModule,
|
|
],
|
|
declarations: [
|
|
...components,
|
|
],
|
|
})
|
|
export class UiFeaturesModule { }
|