22 lines
480 B
TypeScript
22 lines
480 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {InputComponent} from "./input.component";
|
|
import {SharedModule} from "../../shared/shared.module";
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
|
import {SafeHtmlPipeModule} from "../../utils/pipes/safeHTMLPipe.module";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedModule,
|
|
IconsModule,
|
|
SafeHtmlPipeModule
|
|
],
|
|
exports: [
|
|
InputComponent
|
|
],
|
|
declarations: [
|
|
InputComponent
|
|
]
|
|
})
|
|
export class InputModule {
|
|
}
|