| 8 | dependencies.register('config', CONFIG); |
| 9 | |
| 10 | class App extends React.Component { |
| 11 | getChildContext() { |
| 12 | return dependencies; |
| 13 | } |
| 14 | render() { |
| 15 | return <Header />; |
| 16 | } |
| 17 | }; |
| 18 | App.childContextTypes = { |
| 19 | data: PropTypes.object, |
| 20 | get: PropTypes.func, |
nothing calls this directly
no outgoing calls
no test coverage detected