Which choice will not cause a React component to rerender?
the value of one of the component's props changes
one of the component's siblings rerenders
if the component calls this.setState(...)
this.setState(...)
if the component calls this.forceUpdate()
this.forceUpdate()