0.0.2 • Published 7 years ago

md2-datepickerfr v0.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

md2-datepickerfr

Angular2 based Material Design datepickerfr component.

Build Status

Quick start

  1. A recommended way to install md2-datepickerfr is through npm package manager using the following command:

    npm install md2-datepickerfr --save

  2. Setup md2-datepickerfr in your project

// system.config.js
// ================
{
  map: {
    'md2-datepickerfr': 'node_modules/md2-datepickerfr'
  },
  packages: {
    'md2-datepickerfr': {
	  format: 'cjs',
      main: 'md2datepickerfr.umd.js'
    }
  }
}


// app.module.ts
// =============

import { Md2datepickerfrModule }  from 'md2-datepickerfr';
@NgModule({
  imports: [
    ...,
    Md2datepickerfrModule.forRoot(),
  ],
  ...
})
export class AppModule { }
  1. More information regarding of using md2-datepickerfr is located in demo and demo sources.