aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tabs/tabs.module.ts
blob: 6b42c0ecf6826d14ed37ddd33a22a2e004510f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
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 {
}