import React from "react" import { Button, Input } from "antd" import { Icons } from "components/Icons" import "./index.less" export default (props) => { const [value, setValue] = React.useState(props.ctx.currentValue) React.useEffect(() => { setValue(props.ctx.currentValue) }, [props.ctx.currentValue]) return