Farmbot-Web-App/frontend/sequences/inputs/input_unknown.tsx

8 lines
260 B
TypeScript

import * as React from "react";
import { StepInputProps } from "../interfaces";
export function InputUnknown({ field }: StepInputProps) {
return <input type="text" name="unknown"
placeholder={`UNEXPECTED INPUT '${(field || "empty").toString()}'`} />;
}