I\'m trying to use the Datepicker component in Angular Material. Here is my HTML code:
You need to import both MatDatepickerModule and MatNativeDateModule under imports and add MatDatepickerModule under providers
MatDatepickerModule
MatNativeDateModule
imports: [ MatDatepickerModule, MatNativeDateModule ], providers: [ MatDatepickerModule, ],