mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
import React from 'react';
|
|
import dayjs from 'dayjs';
|
|
import { DatePicker } from 'antd';
|
|
|
|
const { _InternalPanelDoNotUseOrYouWillBeFired: PureDatePicker } = DatePicker;
|
|
|
|
const App: React.FC = () => (
|
|
<PureDatePicker
|
|
presets={[
|
|
{ label: 'Yesterday', value: dayjs().add(-1, 'd') },
|
|
{ label: 'Last Week', value: dayjs().add(-7, 'd') },
|
|
{ label: 'Last Month', value: dayjs().add(-1, 'month') },
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|