fengxiang
2018-07-11 12b04f145bae740e1971036b1e2dfc1bc224d17b
src/app/routes/style/style.module.ts
New file
@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { SharedModule } from '@shared/shared.module';
import { StyleRoutingModule } from './style-routing.module';
import { ColorService } from './color.service';
import { GridMasonryComponent } from './gridmasonry/gridmasonry.component';
import { TypographyComponent } from './typography/typography.component';
import { ColorsComponent } from './colors/colors.component';
@NgModule({
  imports: [SharedModule, StyleRoutingModule],
  declarations: [
    GridMasonryComponent,
    TypographyComponent,
    ColorsComponent,
  ],
  providers: [ColorService],
})
export class StyleModule {}