import { FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps } from '@rjsf/utils'; /** The `AltDateTimeWidget` is an alternative widget for rendering datetime properties. * It uses the AltDateWidget for rendering, with the `time` prop set to true by default. * * @param props - The `WidgetProps` for this component */ function AltDateTimeWidget({ time = true, ...props }: WidgetProps) { const { AltDateWidget } = props.registry.widgets; return ; } export default AltDateTimeWidget;