src/app/footer/footer.module.ts
The footer module
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { footerModuleComponents } from './index';
/**
* The footer module
*/
@NgModule({
imports: [BrowserModule],
declarations: [...footerModuleComponents],
exports: [FooterComponent],
schemas: [NO_ERRORS_SCHEMA]
})
export class FooterModule {}