What does the ... do in this React (using JSX) code and what is it called?
...
Is usually called spread operator, it is use to expand wherever is required
example
const SomeStyle = { margin:10, background:#somehexa }
you can use this where ever you requires it more about spread operator Spread syntax.