import React from 'react';
import { DatePicker as ADatePicker } from 'antd';

export default function DatePicker(props) {
  const { currentVal, itemProps = {} } = props;

  let compoProps = {
    ...itemProps,
    value: currentVal,
    onChange: date => props.onChange(date),
  };

  return <ADatePicker style={{ width: '100%' }} {...compoProps} />;
}
