mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* Add initial changes for thenew premium design * Add the messages * Add the new dialog modal * Resolve the flag issue * Added changes for redirect * Fix the unitest errors * Resolve the badge issue * refactor the code base pr comments
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { PricingCardComponent } from "@bitwarden/pricing";
|
|
import {
|
|
EnterBillingAddressComponent,
|
|
EnterPaymentMethodComponent,
|
|
} from "@bitwarden/web-vault/app/billing/payment/components";
|
|
|
|
import { HeaderModule } from "../../layouts/header/header.module";
|
|
import { BillingSharedModule } from "../shared";
|
|
|
|
import { BillingHistoryViewComponent } from "./billing-history-view.component";
|
|
import { IndividualBillingRoutingModule } from "./individual-billing-routing.module";
|
|
import { PremiumComponent } from "./premium/premium.component";
|
|
import { SubscriptionComponent } from "./subscription.component";
|
|
import { UserSubscriptionComponent } from "./user-subscription.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
IndividualBillingRoutingModule,
|
|
BillingSharedModule,
|
|
HeaderModule,
|
|
EnterPaymentMethodComponent,
|
|
EnterBillingAddressComponent,
|
|
PricingCardComponent,
|
|
],
|
|
declarations: [
|
|
SubscriptionComponent,
|
|
BillingHistoryViewComponent,
|
|
UserSubscriptionComponent,
|
|
PremiumComponent,
|
|
],
|
|
})
|
|
export class IndividualBillingModule {}
|