blob: 00c35de52810b2435f258479a31cc1c98b226c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { NgModule } from "@angular/core";
import { KeysPipe } from "./keys.pipe";
import { ColorsTable } from "./colors-table.component";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";
import { ButtonComponent } from "../../../src/angular/components";
@NgModule({
declarations: [
ColorsTable,
KeysPipe,
ButtonComponent
],
imports: [
CommonModule,
FormsModule,
],
exports: []
})
export class SdcStoriesHelperModule {
}
|