入力値を変更すると、スパン値が期待した変更と一致しませんでした。ここに私のjsxファイルがあります:
import React from 'react';
import styles from './Avatar.less';
import { Input } from 'antd';
var typed = '';
function changed(e){
console.log(typed);
typed = e.target.value;
}
const Avatar = () => {
return (
<div className={styles.normal}>
<span>{typed}</span>
<Input onChange={changed.bind(this)} placeholder="text in" />
</div>
);
};
export default Avatar;