mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 14:52:34 +00:00
23 lines
651 B
TypeScript
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
|
|
{
|
|
}
|