()
| 51 | }; |
| 52 | |
| 53 | const Bbb = () => { |
| 54 | const { bbb, setBbb } = useContext(context); |
| 55 | |
| 56 | console.log("Bbb render..."); |
| 57 | |
| 58 | return <div> |
| 59 | bbb: {bbb} |
| 60 | <button onClick={() => setBbb(bbb + 1)}>加一</button> |
| 61 | </div>; |
| 62 | }; |
| 63 | |
| 64 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected