React getInitialState using props
Transferring props to the component's state is considered a bad practice: http://facebook.github.io/react/tips/props-in-getInitialState-as-anti-pattern.html
It might be best to consider a different approach. You can access props directly and the component will update when the props are changed.