mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
material colors added class helpers and global class added. Material Colors Demo page added.
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { UIPageLayoutsModule } from './page-layouts/page-layouts.module';
|
|
import { UIColorsModule } from './colors/colors.module';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
UIColorsModule,
|
|
UIPageLayoutsModule
|
|
]
|
|
})
|
|
export class UIModule
|
|
{
|
|
}
|