Skip to content

Instantly share code, notes, and snippets.

View aboudard's full-sized avatar
🎯
Focusing

Alain Boudard aboudard

🎯
Focusing
View GitHub Profile
@aboudard
aboudard / app.component.ts
Last active June 26, 2018 12:53 — forked from nrobinaubertin/app.component.ts
Exemple of ngb-date-parser-formatter implementation (ng-bootstrap)
import { NgbDatepickerConfig, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap';
import { NgbDateFRParserFormatter } from "./ngb-date-fr-parser-formatter"
@Component({
providers: [{provide: NgbDateParserFormatter, useClass: NgbDateFRParserFormatter}]
})
export class AppComponent {}