1.0.3 • Published 7 years ago
react-datepicker-mobile v1.0.3
react-datepicker-mobile
a simple datePicker component http://114.215.68.43/datepicker
get start
step one
clone or down this projectthe second step
cd examplethe third step
npm installfinally
npm starthow to use
Example with defaults
install
npm intsall --save react-datepicker-mobileCreating an example component:
import React,{Component} from 'react';
import DatePicker from 'react-datepicker-mobile';
class Index extents Component{
componentDidMount(){
this.refs.datePicker.toggle();
}
render: function() {
return (
<DatePicker ref="datePicker"> </DatePicker>
);
},
};
export default Index;