import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { NgrxFormsModule, } from 'ngrx-forms'; import { FloatingLabelInputComponent, } from './floating-label-input.component'; @NgModule({ declarations: [ FloatingLabelInputComponent, ], exports: [ FloatingLabelInputComponent, ], imports: [ CommonModule, NgrxFormsModule, ], }) export class FloatingLabelInputModule { }