import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FooterComponent } from './footer.component';
import { SocialMediaFooterSideComponent } from './social-media-footer-side/social-media-footer-side.component';
import { DxaFieldsModule } from 'src/app/dxa/dxa-fields/dxa-fields.module';
import { DxaEntityModule } from '../../dxa-entity.module';
import { FooterRegionComponent } from './footer-region/footer-region.component';
import { RouterModule } from '@angular/router';
@NgModule({
declarations: [
FooterComponent,
SocialMediaFooterSideComponent,
FooterRegionComponent
],
imports: [
CommonModule,
DxaFieldsModule,
DxaEntityModule,
RouterModule
],
entryComponents: [
FooterComponent,
SocialMediaFooterSideComponent
],
exports: [
FooterComponent
]
})
export class FooterModule { }