()
| 14 | const [imageError, setImageError] = useState<boolean>(false); |
| 15 | |
| 16 | const handleImageError = () => { |
| 17 | setImageError(true); |
| 18 | }; |
| 19 | |
| 20 | const handleImageLoad = () => { |
| 21 | setImageError(false); |
nothing calls this directly
no outgoing calls
no test coverage detected