Describe what is happening in this code?
const { name: firstName } = props;
It is retrieving the value of props.name.firstName.
It is creating a new object that contains the same name property as the props object.
It is assigning the value of the props object's name property to a constant called firstName.
It is assigning the value of the props object's firstName property to a constant called name.