UNPKG

385 BPlain TextView Raw
1import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
2import { BrowserModule } from '@angular/platform-browser';
3
4import { footerModuleComponents } from './index';
5
6/**
7 * The footer module
8 */
9@NgModule({
10 imports: [BrowserModule],
11 declarations: [...footerModuleComponents],
12 exports: [FooterComponent],
13 schemas: [NO_ERRORS_SCHEMA]
14})
15export class FooterModule {}