2020-05-18 14:37:52 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import {TabsComponent} from './tabs.component';
|
|
|
|
import {TabComponent} from "./tab.component";
|
2020-05-25 13:27:07 +02:00
|
|
|
import {SmallTabsComponent} from "./small-tabs.component";
|
2022-01-21 14:40:30 +01:00
|
|
|
import {IconsModule} from '../icons/icons.module';
|
2020-05-18 14:37:52 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2022-01-21 14:40:30 +01:00
|
|
|
CommonModule, FormsModule, IconsModule
|
2020-05-18 14:37:52 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
2020-05-25 13:27:07 +02:00
|
|
|
TabsComponent, TabComponent, SmallTabsComponent
|
2020-05-18 14:37:52 +02:00
|
|
|
],
|
|
|
|
exports: [
|
2020-05-25 13:27:07 +02:00
|
|
|
TabsComponent, TabComponent, SmallTabsComponent
|
2020-05-18 14:37:52 +02:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class TabsModule { }
|