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:
@@ -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 {}
|
||||
Reference in New Issue
Block a user