What is the meaning of
{...this.props}
I am trying to use it like that
Content Here
It will compile to this:
React.createElement('div', this.props, 'Content Here');
As you can see above, it passes all it's props to the div.
div