I had to update the components>widgetname.tsx file to:
import { Component, createElement } from "react";
export interface InputProps {
value: string;
}
export class TextInput extends Component<InputProps> {
render() {
return <input type="text" value={this.props.value} />;
}
}