mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-19 15:57:42 +01:00
68b62e73f1
* 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 {}
|