()
| 9 | const LabelMemo = memo(Label) |
| 10 | |
| 11 | export default function App() { |
| 12 | const [count, setCount] = useState(0) |
| 13 | |
| 14 | return ( |
| 15 | <> |
| 16 | <Button |
| 17 | title={`Pressed ${count} times`} |
| 18 | onPress={() => { |
| 19 | setCount(count + 1) |
| 20 | }} |
| 21 | /> |
| 22 | <LabelMemo title="Label with memo" /> |
| 23 | <Label title="Label" /> |
| 24 | </> |
| 25 | ) |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected