FixedControlled.jsx 342 B

123456789101112131415
  1. import React from 'react';
  2. import { DatePicker } from '@douyinfe/semi-ui';
  3. const App = () => (
  4. <>
  5. <DatePicker
  6. type="dateRange"
  7. defaultPickerValue="2022-08-01"
  8. value={[new Date('2022-08-08'), new Date('2022-08-09')]}
  9. style={{ width: 400 }}
  10. />
  11. </>
  12. );
  13. export default App;