(propsList)
| 5 | withSideEffect = require('react-side-effect'); |
| 6 | |
| 7 | function reducePropsToState(propsList) { |
| 8 | var innermostProps = propsList[propsList.length - 1]; |
| 9 | if (innermostProps) { |
| 10 | return innermostProps.title; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | function handleStateChangeOnClient(title) { |
| 15 | var nextTitle = title || ''; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…