import React from "react"; import {FormControl, TextField} from "@mui/material"; interface LabeledInputProps { id: string, label: string, helper: string, onContentChange: (content: string) => void, init?: string } function LabeledInput(props: LabeledInputProps) { return ( props.onContentChange(event.target.value)} /> ); } export default LabeledInput;