fengxiang
2018-07-11 a3a8c23b196980732a795713a5eb5fe0c7075bf9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 {}