UNPKG

ethio-calendar-converter-angular

Version:
21 lines (20 loc) 544 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { EthiopianCalendarComponent } from './ethiopian-calendar.component'; import { EthiopianCalendarService } from './ethiopian-calendar.service'; @NgModule({ declarations: [], imports: [ CommonModule, FormsModule, EthiopianCalendarComponent ], exports: [ EthiopianCalendarComponent ], providers: [ EthiopianCalendarService ] }) export class EthiopianCalendarModule { }