I'm learning ReactJS. I figured that now the best way create a component is extending the class React.Component. My question is, what is this super(props)
doing exactly?
I thought that it may be setting the basic props object, but if I delete the whole constructor method, it still works.