mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
19 lines
570 B
TypeScript
19 lines
570 B
TypeScript
import React from 'react';
|
|
import dayjs from 'dayjs';
|
|
import { DatePicker } from 'antd';
|
|
|
|
const { _InternalRangePanelDoNotUseOrYouWillBeFired: PureRangePicker } = DatePicker;
|
|
|
|
const App: React.FC = () => (
|
|
<PureRangePicker
|
|
presets={[
|
|
{ label: 'Last 7 Days', value: [dayjs().add(-7, 'd'), dayjs()] },
|
|
{ label: 'Last 14 Days', value: [dayjs().add(-14, 'd'), dayjs()] },
|
|
{ label: 'Last 30 Days', value: [dayjs().add(-30, 'd'), dayjs()] },
|
|
{ label: 'Last 90 Days', value: [dayjs().add(-90, 'd'), dayjs()] },
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|