UNPKG

@rjsf/antd

Version:

Ant Design theme, fields and widgets for react-jsonschema-form

11 lines 437 B
import { jsx as _jsx } from "react/jsx-runtime"; import DateWidget from '../DateWidget/index.js'; /** The `DateTimeWidget` component uses the `DateWidget` with `showTime` enabled, transforming * the value to/from ISO string format. * * @param props - The `WidgetProps` for this component */ export default function DateTimeWidget(props) { return _jsx(DateWidget, { showTime: true, ...props }); } //# sourceMappingURL=index.js.map