import { NgModule } from '@angular/core'; import { FooterComponent } from './footer.component'; @NgModule({ imports: [FooterComponent], exports: [FooterComponent] }) export class FooterModule {}