MCPcopy Index your code
hub / github.com/reactjs/react-modal / render

Method render

examples/basic/app.js:23–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21
22class App extends Component {
23 render() {
24 return (
25 <div>
26 {examples.map((example, key) => {
27 const ExampleApp = example.app;
28 return (
29 <div key={key + 1} className="example">
30 <h3>{`#${key + 1}. ${example.label}`}</h3>
31 <ExampleApp />
32 </div>
33 );
34 })}
35 </div>
36 );
37 }
38}
39
40ReactDOM.render(<App />, appElement);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected