Created component for DateTimeInputs

This commit is contained in:
Alejandro Celaya
2022-10-18 22:02:09 +02:00
parent 894934fd08
commit 57a17d7e92
3 changed files with 19 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
import { ReactDatePickerProps } from 'react-datepicker';
import { FC } from 'react';
import { DateInput } from '../DateInput';
export type DateTimeInputProps = Omit<ReactDatePickerProps, 'showTimeSelect' | 'dateFormat' | 'timeIntervals'>;
export const DateTimeInput: FC<DateTimeInputProps> = (props) => (
<DateInput
{...props}
dateFormat="yyyy-MM-dd HH:mm"
showTimeSelect
timeIntervals={5}
/>
);