Moved date-time related utils to the proper folder

This commit is contained in:
Alejandro Celaya
2022-10-23 10:49:35 +02:00
parent c3b60367f3
commit 6df12ce194
10 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import { ReactDatePickerProps } from 'react-datepicker';
import { FC } from 'react';
import { DateInput } from '../DateInput';
import { DateInput } from './DateInput';
import { STANDARD_DATE_AND_TIME_FORMAT } from '../helpers/date';
export type DateTimeInputProps = Omit<ReactDatePickerProps, 'showTimeSelect' | 'dateFormat' | 'timeIntervals'>;