base2.tsx 414 Bytes
Newer Older
李纪文's avatar
李纪文 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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 Demo = (props) => {
  return (
    <>
      <RangePickerCustom style={{ marginRight: '10px', marginBottom: '10px' }} />
    </>
  );
};

export default Demo;