import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { WipBannerComponent } from './wip-banner.component';
@NgModule({
declarations: [WipBannerComponent],
imports: [CommonModule],
exports: [WipBannerComponent]
})
export class WipBannerModule {}