import * as React from "react"; import { Row, Col } from "../ui/index"; import { KeyValRowProps } from "./key_val_show_row"; import { t } from "../i18next_wrapper"; interface Props extends KeyValRowProps { onLabelChange(e: React.ChangeEvent): void; onValueChange(e: React.ChangeEvent): void; valueType: "number" | "string"; } /** A row containing two textboxes and a delete button. Useful for maintaining * lists of things (peripherals, feeds, tools etc). */ export function KeyValEditRow(p: Props) { return ; }