import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NotifyModule } from '@farris/ui-notify'; import { AvatarComponent } from './avatar.component'; import { FormsModule } from '@angular/forms'; import { LocaleModule } from '@farris/ui-locale'; @NgModule({ declarations: [AvatarComponent], imports: [ CommonModule, FormsModule, NotifyModule, LocaleModule.forRoot() ], exports: [AvatarComponent] }) export class AvatarModule { }