@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
16 lines (13 loc) • 385 B
text/typescript
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 {}