This repository was archived by the owner on Oct 9, 2021. It is now read-only.

Description
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]
})