You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
803 B
27 lines
803 B
import React from 'react';
|
|
import { DatePicker, Space } from 'antd';
|
|
import dayjs from 'dayjs';
|
|
import customParseFormat from 'dayjs/plugin/customParseFormat';
|
|
|
|
dayjs.extend(customParseFormat);
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
const dateFormat = 'YYYY-MM-DD';
|
|
|
|
const App: React.FC = () => (
|
|
<Space direction="vertical" size={12}>
|
|
<DatePicker defaultValue={dayjs('2015-06-06', dateFormat)} disabled />
|
|
<DatePicker picker="month" defaultValue={dayjs('2015-06', 'YYYY-MM')} disabled />
|
|
<RangePicker
|
|
defaultValue={[dayjs('2015-06-06', dateFormat), dayjs('2015-06-06', dateFormat)]}
|
|
disabled
|
|
/>
|
|
<RangePicker
|
|
defaultValue={[dayjs('2019-09-03', dateFormat), dayjs('2019-11-22', dateFormat)]}
|
|
disabled={[false, true]}
|
|
/>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|
|
|