import form_styles from "./Form.module.css"; import Button from "./Button"; import { validate } from "./Form"; const DictInputRow = (props) => { const dict = { ...props.value }; if (!props.disableKeys) { dict[""] = "0"; } let unit = ""; if (props.unit) { unit = ({props.unit}); } let tooltip = ""; if (props.tooltip !== undefined) { tooltip =