({ title })
| 2 | import { Button, Text } from 'react-native' |
| 3 | |
| 4 | function Label({ title }) { |
| 5 | console.log(`Rendered: ${title}`) |
| 6 | return <Text>{title}</Text> |
| 7 | } |
| 8 | |
| 9 | const LabelMemo = memo(Label) |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected