MCPcopy
hub / github.com/krasimir/react-in-patterns / render

Method render

code/composition/src/app.jsx:27–34  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25
26class App extends React.Component {
27 render() {
28 return (
29 <Header track={ this._track } title={ <Title /> }>
30 <Navigation track={ this._track } />
31 <DataProvider render={ message => <p>{ message }</p> } />
32 </Header>
33 );
34 }
35 _track(label) {
36 console.log(`Tracking: ${ label }`);
37 }

Callers 15

app.jsFile · 0.45
finishClassComponentFunction · 0.45
lFunction · 0.45
CgFunction · 0.45
renderMethod · 0.45
app.jsxFile · 0.45
finishClassComponentFunction · 0.45
app.jsFile · 0.45
lFunction · 0.45
CgFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected