What are props in React?
props are a type of object where the value of attributes of a tag is stored. you can also pass any JavaScript value through them, including objects, arrays, and functions.
How do you use props in a component?
You can pass them to child components, specify default values
How do you pass props to a component?
you can pass props by listing them in your components parameters so that you can then use them later inside your component body
How do you write JavaScript expressions in JSX?
By wrapping the expression inside curly braces