import React, { Component } from "react"; import { Form, FormElement, Field } from "@progress/kendo-react-form"; import * as FormComponents from "../shared/form-components"; import axios from "axios"; class sample extends Component { state = { firstName: null } /*componentDidMount() { axios.get("someURL").then(response => { this.setState({ firstName: response.data }) }) }*/ render() { return (