aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/searchbar/search-bar.module.ts
blob: 27750f393c90b6cd495ce1bd808595d319bf7553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { NgModule } from "@angular/core";
import { SearchBarComponent } from "./search-bar.component";
import { CommonModule } from "@angular/common";
import { FormElementsModule } from "../form-elements/form-elements.module";

@NgModule({
    declarations: [
        SearchBarComponent
    ],
    imports: [CommonModule,
        FormElementsModule],
    exports: [
        SearchBarComponent
    ],
})
export class SearchBarModule {
}