2022-10-21 16:06:44 +02:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {SliderTabsComponent} from "./slider-tabs.component";
|
|
|
|
import {SliderTabComponent} from "./slider-tab.component";
|
|
|
|
import {RouterModule} from "@angular/router";
|
2023-02-09 11:09:49 +01:00
|
|
|
import {SliderUtilsModule} from "../slider-utils/slider-utils.module";
|
2022-10-21 16:06:44 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2023-02-09 11:09:49 +01:00
|
|
|
imports: [CommonModule, RouterModule, SliderUtilsModule],
|
2022-10-21 16:06:44 +02:00
|
|
|
declarations: [SliderTabsComponent, SliderTabComponent],
|
|
|
|
exports: [SliderTabsComponent, SliderTabComponent]
|
|
|
|
})
|
|
|
|
export class SliderTabsModule {}
|
|
|
|
|