aboutsummaryrefslogtreecommitdiffstats
path: root/stories/angular/helpers/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'stories/angular/helpers/index.ts')
-rw-r--r--stories/angular/helpers/index.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/stories/angular/helpers/index.ts b/stories/angular/helpers/index.ts
new file mode 100644
index 0000000..00c35de
--- /dev/null
+++ b/stories/angular/helpers/index.ts
@@ -0,0 +1,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 {
+}