[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 03:57:48 +01:00
parent 85f98f66b4
commit 3dd17352aa
156 changed files with 15648 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import DatePicker, { registerLocale } from 'react-datepicker';
import es from 'date-fns/locale/es';
import 'react-datepicker/dist/react-datepicker.css';
registerLocale('es', es);
const SpanishDateTimePicker = ({ selected, onChange }) => {
return (
<DatePicker
selected={selected}
onChange={onChange}
showTimeSelect
timeFormat="HH:mm"
timeIntervals={15}
dateFormat="dd/MM/yyyy HH:mm"
timeCaption="Hora"
locale="es"
className="form-control themed-input"
/>
);
};
export default SpanishDateTimePicker;