import React from "react"; import styles from "./index.less"; import { Input } from "antd"; const { TextArea } = Input; class Demo extends React.Component { state = { value: "" }; onChange = ({ target: { value } }) => { this.setState({ value }); }; render() { const { value } = this.state; return (