verekia / js-stack-from-scratch

🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack.
MIT License
20.09k stars 1.99k forks source link

How to update message on the fly ? #195

Closed gondar00 closed 7 years ago

gondar00 commented 7 years ago

Type of issue: (feature suggestion, bug?)

Question

Chapter:

Adding redux and splitting between component and container.

If it's a bug:

NO Suppose i have added an input field that displays text onto the screen.I want to change the displayed text on the fly that displays the entered text onto the screen. Where should i write code specific to that? I am assuming inside the container?

Please try using the code provided instead of your own to see if that solves the issue. If it does, compare the content of relevant files to see if anything is missing in your version. Every chapter is automatically tested, so issues are likely coming from missing an instruction in the tutorial or a typo. Feel free to open an issue if there is a problem with instructions though.

verekia commented 7 years ago

Hey @gondar00.

I'm afraid this is not really a problem related to the tutorial, but more about React and / or Redux general knowledge. Like I say in the introduction, my goal with this tutorial is not to cover everything from these libraries. People should refer to their documentations instead.

Take a look at this for instance, it might help:

https://facebook.github.io/react/docs/forms.html

If that doesn't solve your problem, maybe Stack Overflow would be a better place to ask a question than here.

Sorry buddy :)

gondar00 commented 7 years ago

Thank you so much for your reply.

I will look at stack overflow and the documentation. :)