-
Notifications
You must be signed in to change notification settings - Fork 14
take component into use
kekeh edited this page May 26, 2019
·
1 revision
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AngularMyDatePickerModule } from 'angular-mydatepicker';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule, ReactiveFormsModule, FormsModule, AngularMyDatePickerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class YourAppModule { }
