We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f87ed commit 1926404Copy full SHA for 1926404
packages/react-timerange-picker/src/TimeRangePicker.tsx
@@ -332,7 +332,7 @@ export type TimeRangePickerProps = {
332
} & ClockProps &
333
Omit<EventProps, 'onChange' | 'onFocus'>;
334
335
-const TimeRangePicker: React.FC<TimeRangePickerProps> = function TimeRangePicker(props) {
+export default function TimeRangePicker(props: TimeRangePickerProps) {
336
const {
337
amPmAriaLabel,
338
autoFocus,
@@ -664,6 +664,4 @@ const TimeRangePicker: React.FC<TimeRangePickerProps> = function TimeRangePicker
664
{renderClock()}
665
</div>
666
);
667
-};
668
-
669
-export default TimeRangePicker;
+}
0 commit comments