mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-02 05:36:38 +00:00
Created component for DateTimeInputs
This commit is contained in:
14
src/utils/dates/DateTimeInput.tsx
Normal file
14
src/utils/dates/DateTimeInput.tsx
Normal 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}
|
||||
/>
|
||||
);
|
||||
Reference in New Issue
Block a user