aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tabs/tabs.module.ts
blob: 107942d04c393601173f04646a4480af12d0b61c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 {
}