import React, { useContext, useEffect, useState } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { Input } from 'antd';
import DatePickerCustom, { TimePickerCustom, RangePickerCustom } from '../index';

const Demo1 = (props) => {
  return (
    <>
      <TimePickerCustom style={{ marginRight: '10px', marginBottom: '10px' }} />
    </>
  );
};

export default Demo1;