mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
[CL-135] Migrate component library to standalone components (#12389)
* Migrate component library to standalone components * Fix tests
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { NgSelectModule } from "@ng-select/ng-select";
|
||||
|
||||
import { OptionComponent } from "./option.component";
|
||||
import { SelectComponent } from "./select.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, NgSelectModule, FormsModule],
|
||||
declarations: [SelectComponent, OptionComponent],
|
||||
imports: [SelectComponent, OptionComponent],
|
||||
exports: [SelectComponent, OptionComponent],
|
||||
})
|
||||
export class SelectModule {}
|
||||
|
||||
Reference in New Issue
Block a user