aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tabs/tabs.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/tabs/tabs.module.ts')
-rw-r--r--src/angular/tabs/tabs.module.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/angular/tabs/tabs.module.ts b/src/angular/tabs/tabs.module.ts
new file mode 100644
index 0000000..107942d
--- /dev/null
+++ b/src/angular/tabs/tabs.module.ts
@@ -0,0 +1,23 @@
+import { NgModule } from "@angular/core";
+import { CommonModule } from "@angular/common";
+import { FormElementsModule } from "../form-elements/form-elements.module";
+import { TabsComponent } from "./tabs.component";
+import { TabComponent } from './children/tab.component';
+import { SvgIconModule } from './../svg-icon/svg-icon.module';
+
+@NgModule({
+ declarations: [
+ TabsComponent,
+ TabComponent
+ ],
+ imports: [
+ CommonModule,
+ SvgIconModule
+ ],
+ exports: [
+ TabsComponent,
+ TabComponent
+ ]
+})
+export class TabsModule {
+}