mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
* Move search component into the component library * Migrate search fields * Reshuffle imports slightly * Remove export input module --------- Co-authored-by: cd-bitwarden <106776772+cd-bitwarden@users.noreply.github.com>
15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
import { NgModule } from "@angular/core";
|
|
import { FormsModule } from "@angular/forms";
|
|
|
|
import { InputModule } from "../input/input.module";
|
|
import { SharedModule } from "../shared";
|
|
|
|
import { SearchComponent } from "./search.component";
|
|
|
|
@NgModule({
|
|
imports: [SharedModule, InputModule, FormsModule],
|
|
declarations: [SearchComponent],
|
|
exports: [SearchComponent],
|
|
})
|
|
export class SearchModule {}
|