UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

15 lines (11 loc) 396 B
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { CountdownModule } from 'ngx-countdown'; import { CountDownComponent } from './count-down.component'; const COMPONENTS = [CountDownComponent]; @NgModule({ imports: [CommonModule, CountdownModule], declarations: [...COMPONENTS], exports: [...COMPONENTS], }) export class CountDownModule {}