Picsur/frontend/src/app/components/footer/footer.module.ts
2022-02-28 21:09:27 +01:00

12 lines
282 B
TypeScript

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