@blocklet/ui-react
Version:
Some useful front-end web components that can be used in Blocklets.
11 lines (10 loc) • 345 B
TypeScript
interface DateTimeInputProps {
value: Date;
onChange: (value: Date) => void;
error?: boolean;
helperText?: string;
label?: string;
timezone?: string;
}
export default function DateTimeInput({ value, onChange, error, helperText, label, timezone, }: DateTimeInputProps): import("react/jsx-runtime").JSX.Element;
export {};