I looked at Facebook\'s documentation at (React.Component) and it mentions how componentWillMount is invoked on the client/server whereas componentDidMou
componentWillMount
componentDidMou
As per the documentation ( https://facebook.github.io/react/docs/react-component.html )
Methods prefixed with will are called right before something happens and
Methods prefixed with did are called right after something happens.