import React, { PropTypes, Component } from 'react';
import DateTimePicker from 'react-datetime';
// import moment from 'moment';
class DateTime extends Component {
// when the datetime picker mounts, SmartForm will catch the date value (no formsy mixin in this component)
componentWillMount() {
this.context.addToAutofilledValues({[this.props.name]: this.props.value || new Date()});
}
render() {
return (