Hi, I am new to reacting and it is hard for me to understand how data binding in responsejs works. I did data binding in AngularJS, but in reactions it seems more complicated.
What I want to do is when I enter text in the input field, it should appear elsewhere in real time.
This is my input
<div className="post_input">
<input className='post_data_input_overlay' placeholder="Ask your question here" ref="postTxt"/>
</div>
So, when I enter something into this input field, it should appear somewhere else. How can i do this?
source
share