mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 20:13:42 +00:00
* restructure billing folders into individual, organization, and shared * move components from `LooseComponentsModule`
21 lines
714 B
TypeScript
21 lines
714 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BillingSharedModule } from "../shared";
|
|
|
|
import { BillingHistoryViewComponent } from "./billing-history-view.component";
|
|
import { IndividualBillingRoutingModule } from "./individual-billing-routing.module";
|
|
import { PremiumComponent } from "./premium.component";
|
|
import { SubscriptionComponent } from "./subscription.component";
|
|
import { UserSubscriptionComponent } from "./user-subscription.component";
|
|
|
|
@NgModule({
|
|
imports: [IndividualBillingRoutingModule, BillingSharedModule],
|
|
declarations: [
|
|
SubscriptionComponent,
|
|
BillingHistoryViewComponent,
|
|
UserSubscriptionComponent,
|
|
PremiumComponent,
|
|
],
|
|
})
|
|
export class IndividualBillingModule {}
|