bitwarden-estensione-browser/libs/components/src/badge/badge.module.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
277 B
TypeScript
Raw Normal View History

2022-03-08 11:50:34 +01:00
import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { BadgeDirective } from "./badge.directive";
2022-03-08 11:50:34 +01:00
@NgModule({
imports: [CommonModule],
exports: [BadgeDirective],
declarations: [BadgeDirective],
2022-03-08 11:50:34 +01:00
})
export class BadgeModule {}