Creating forms with React is important because you are able to use user data and store it in state in order to apply it somewhere else.
Ternary operators are important because the reduce the amount of code you have to write (should’ve learned this earlier!)
A ‘Controlled Component’ is a component controlled by the state inside of the react component.
We should wait to store the users responses from the form into state when they submit the form because the there is better management over the forms state.
We can target what the user is entering by using the same method in JS. event.target.value
We would use a ternary operator to simplify a conditional statement.
x === y ? true : false;