mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { BannerComponent } from "./banner.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [BannerComponent],
|
|
declarations: [BannerComponent],
|
|
})
|
|
export class BannerModule {}
|