mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
* Rework implementation of payment method warnings * Move payment-method-warnings.component to module * Moved timer/subscribe to app.component * Remove unrelated refactoring * Remaining feedback * Add paymentMethodWarningsService tests * Thomas' feedback * fix tests * Use barrel file imports * Make banner work with new vault navigation * Matt's feedback
15 lines
429 B
TypeScript
15 lines
429 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BannerModule } from "@bitwarden/components";
|
|
|
|
import { SharedModule } from "../../../shared";
|
|
|
|
import { PaymentMethodWarningsComponent } from "./payment-method-warnings.component";
|
|
|
|
@NgModule({
|
|
imports: [BannerModule, SharedModule],
|
|
declarations: [PaymentMethodWarningsComponent],
|
|
exports: [PaymentMethodWarningsComponent],
|
|
})
|
|
export class PaymentMethodWarningsModule {}
|