Attempting to disable selection of future dates. Using the DatePicker component from Mesh library. The component is wrapped in a Grid.Column component (also from mesh library). Upon running code with maxDate prop, no changes are reflected in UI.
<Grid>
<Grid.Column col={{ sm: 12, md: 12, lg: 6 }}>
<DatePicker
size="sm"
placeholder="MM-DD-YYYY"
value={valueDate}
onDateChange={e => onChangeDate(e, date)}
required
maxDate={new Date()}
/>
</Grid.Column>
</Grid>