What is the meaning of
{...this.props}
I am trying to use it like that
Content Here
It is ES-6 feature. It means you extract all the properties of props in div.{... }
div.{... }
operator is used to extract properties of an object.