1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

[EC-623] Reusable Search Input Component (#4082)

* [EC-623] Introduce shared organization module and search input component

* [EC-623] Add search input story

* [EC-623] Rename search input component tag prefix from bit->app
This commit is contained in:
Shane Melton
2022-12-08 08:15:50 -08:00
committed by GitHub
parent 750ff736cd
commit c002573581
6 changed files with 126 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
import { NgModule } from "@angular/core";
import { SharedModule } from "../../shared";
import { SearchInputComponent } from "./components/search-input/search-input.component";
@NgModule({
imports: [SharedModule],
declarations: [SearchInputComponent],
exports: [SharedModule, SearchInputComponent],
})
export class SharedOrganizationModule {}