akmittal / angular2-datepicker

Angular2 date time picker
https://www.npmjs.com/package/angular2-datepicker
9 stars 17 forks source link

Update readme for including mydatepicker in project #5

Open cvetkovski opened 7 years ago

cvetkovski commented 7 years ago

The import line is incorrect, it should be: import {MyDatePickerModule} from 'mydatepicker/src/my-date-picker/my-date-picker.module';

and the module should also be included:

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    MyDatePickerModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
akmittal commented 7 years ago

Change has been made. Thanks for pointing is out.

Seville commented 7 years ago

Please update the readme. I actually checked the path before I included it in my module file, the path didn't point to the correct place. Thanks