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

Class App

examples/basic/app.js:22–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20];
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