| 30 | }; |
| 31 | |
| 32 | class SomethingElse extends React.Component { |
| 33 | render() { |
| 34 | return <div>The answer is { this.props.answer }</div>; |
| 35 | } |
| 36 | } |
| 37 | SomethingElse.propTypes = { |
| 38 | answer: PropTypes.element |
| 39 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected