MCPcopy Create free account
hub / github.com/kdchang/reactjs101 / Main

Function Main

Appendix03/react-mocha-test-example/src/components/Main/Main.js:3–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import React from 'react';
2
3const Main = () => (
4 <div>
5 <h1>Todos</h1>
6 <ul>
7 <li>Item1</li>
8 <li>Item2</li>
9 </ul>
10 </div>
11);
12
13export default Main;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected