- What types of things can you pass in the props? the initial values of a component as in what do i want the compnent to be rendered initialy.
- What is the big difference between props and state? state is handles inside the component and can be changed but props are handled outside of the component and cant be changed inside of it.
- When do we re-render our application?
when the state is updated - What are some examples of things that we could store in state? counters, a checkboux value , an input value, and the like.