()
| 71 | }; |
| 72 | |
| 73 | const Bbb = () => { |
| 74 | const { bbb, setBbb } = useContext(bbbContext); |
| 75 | |
| 76 | console.log("Bbb render..."); |
| 77 | |
| 78 | return <div> |
| 79 | bbb: {bbb} |
| 80 | <button onClick={() => setBbb(bbb + 1)}>加一</button> |
| 81 | </div>; |
| 82 | }; |
| 83 | |
| 84 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected