UNPKG

angular-6-calendar-week-hours-view

Version:

This project supports on Angular 6.0+. and aims to provide an alternative view to those already provided on [Angular Calendar](https://github.com/mattlewis92/angular-calendar) v0.25.2. based out of [Angular Calendar Week Hours View](https://github.com/Inn

22 lines (19 loc) 560 B
import {BrowserModule} from '@angular/platform-browser'; import {NgModule} from '@angular/core'; import {AppComponent} from './app.component'; import {CalendarWeekHoursViewModule} from './modules/calendar-week-hours-view/calendar-week-hours-view.module'; import {CalendarModule} from 'angular-calendar'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, CalendarModule.forRoot(), CalendarWeekHoursViewModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }