projects/commons/src/lib/shared/modules/footer/footer.module.ts
import { NgModule } from '@angular/core';
import { FooterComponent } from './components';
import { BadgeModule, BrandModule, NavBarModule } from '../../../elements';
@NgModule({
imports: [
BadgeModule,
BrandModule,
NavBarModule,
],
declarations: [
FooterComponent,
],
exports: [
FooterComponent,
],
})
export class FooterModule {}