DateRangePicker
Installation
import { DateRangePicker } from 'uxp/components';Signature
const DateRangePicker: React.FunctionComponent<IDateRangePickerProps>Examples
<DateRangePicker
startDate={startDate}
endDate={endDate}
closeOnSelect
onChange={(newStart, newEnd) => { setStartDate(newStart); setEndDate(newEnd) }}
/>Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated