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