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 64fe739 commit 0ba15f0Copy full SHA for 0ba15f0
packages/react-timerange-picker/src/TimeRangePicker.tsx
@@ -329,7 +329,7 @@ export type TimeRangePickerProps = {
329
} & ClockProps &
330
Omit<EventProps, 'onChange' | 'onFocus'>;
331
332
-const TimeRangePicker: React.FC<TimeRangePickerProps> = function TimeRangePicker(props) {
+export default function TimeRangePicker(props: TimeRangePickerProps) {
333
const {
334
amPmAriaLabel,
335
autoFocus,
@@ -661,6 +661,4 @@ const TimeRangePicker: React.FC<TimeRangePickerProps> = function TimeRangePicker
661
{renderClock()}
662
</div>
663
);
664
-};
665
-
666
-export default TimeRangePicker;
+}
0 commit comments