Here on this link (as a lotta people referring to, for understanding React 16's architecture) it is mentioned:
Even Elements in React are plain JS objects that contains info about the component, having the following four props:
{
type,
ref,
props,
key
}
I just now want to know a clear difference between Component, Element, Instance and this new Fiber object. Also, is this new Fiber object just the same old Element object with some more new properties as mentioned in the picture?