1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

[PM-142] Add environment selector to trial initiation (#5546)

This commit is contained in:
André Bispo
2023-06-30 16:50:00 +01:00
committed by GitHub
parent 5247168c1e
commit 05c4d172a7
53 changed files with 155 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
import { NgModule } from "@angular/core";
import { SharedModule } from "../../../app/shared";
import { EnvironmentSelectorComponent } from "./environment-selector.component";
@NgModule({
imports: [SharedModule],
declarations: [EnvironmentSelectorComponent],
exports: [EnvironmentSelectorComponent],
})
export class EnvironmentSelectorModule {}