mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:15:09 +00:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
function Component(props) {
|
|
let x = "";
|
|
const onChange = (e) => {
|
|
x = e.target.value;
|
|
};
|
|
return <input value={x} onChange={onChange} />;
|
|
}
|