2017-08-04 11:59:22 +03:00

23 lines
651 B
TypeScript

import { NgModule } from '@angular/core';
import { UIFormsModule } from './forms/forms.module';
import { UIIconsModule } from './icons/icons.module';
import { UITypographyModule } from './typography/typography.module';
import { UIHelperClassesModule } from './helper-classes/helper-classes.module';
import { UIPageLayoutsModule } from './page-layouts/page-layouts.module';
import { UIColorsModule } from './colors/colors.module';
@NgModule({
imports: [
UIFormsModule,
UIIconsModule,
UITypographyModule,
UIHelperClassesModule,
UIPageLayoutsModule,
UIColorsModule
]
})
export class UIModule
{
}