UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

17 lines (13 loc) 576 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { NzAvatarModule } from 'ng-zorro-antd/avatar'; import { NzToolTipModule } from 'ng-zorro-antd/tooltip'; import { AvatarListItemComponent } from './avatar-list-item.component'; import { AvatarListComponent } from './avatar-list.component'; const COMPONENTS = [AvatarListComponent, AvatarListItemComponent]; @NgModule({ imports: [CommonModule, NzAvatarModule, NzToolTipModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class AvatarListModule {}