My reading journal for Code Fellows
What is a ‘Controlled Component’?
Should we wait to store the users responses from the form into state when they submit the form OR should we update the state with their responses as soon as they enter them? Why.
How do we target what the user is entering if we have an event handler on an input field?
event.target.valueWhy would we use a ternary operator?
if...else staementRewrite the following statement using a ternary statement:

x === y ? 'true' : 'false';
React Docs - conditional rendering
## Things I want to know more about