In this tutorial, we're going to be going over functional components. A functional component, is just a regular function that returns jsx. We declare a functional component using 2 different syntax's. We can use es5 styled functions as well as arrow functions. We'll also be talking about props which is short form for properties. A prop is data that we can send from parent component to child component. Props are also immutable. Meaning that they cannot be changed.