MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / App

Class App

code/dependency-injection/src/app.jsx:10–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected