2022-12-02 12:01:26 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from "@angular/router";
|
2018-01-11 11:55:54 +01:00
|
|
|
|
|
|
|
import {BottomComponent} from './bottom.component';
|
2021-05-25 00:15:50 +02:00
|
|
|
import {HelperModule} from "../utils/helper/helper.module";
|
2022-12-02 12:01:26 +01:00
|
|
|
import {IconsModule} from "../utils/icons/icons.module";
|
|
|
|
import {IconsService} from "../utils/icons/icons.service";
|
|
|
|
import {by, cc, facebook, linkedin, newsletter, slideshare, twitter, youtube} from "../utils/icons/icons";
|
2018-01-11 11:55:54 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2022-12-02 12:01:26 +01:00
|
|
|
CommonModule, FormsModule, RouterModule, HelperModule, IconsModule
|
2018-01-11 11:55:54 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
BottomComponent
|
|
|
|
],
|
2022-12-02 12:01:26 +01:00
|
|
|
exports: [BottomComponent]
|
2018-01-11 11:55:54 +01:00
|
|
|
})
|
2022-12-02 12:01:26 +01:00
|
|
|
export class BottomModule{
|
|
|
|
constructor(private iconsService: IconsService) {
|
|
|
|
this.iconsService.registerIcons([by, cc, twitter, facebook, linkedin, slideshare, youtube, newsletter]);
|
|
|
|
}
|
|
|
|
}
|