import { HTMLProps } from "react"; import { HumanDate } from "../HumanDate"; import { Editable } from "./Editable"; export function EditableDateTimeLocal(props: HTMLProps & { value: Date }) { return ( } preview={ } /> ) }