(props: React.ComponentProps<'img'>)
| 208 | } |
| 209 | |
| 210 | function ShipImg(props: React.ComponentProps<'img'>) { |
| 211 | return ( |
| 212 | <ErrorBoundary fallback={<img {...props} />} key={props.src}> |
| 213 | <Suspense fallback={<img {...props} src={shipFallbackSrc} />}> |
| 214 | <Img {...props} /> |
| 215 | </Suspense> |
| 216 | </ErrorBoundary> |
| 217 | ) |
| 218 | } |
| 219 | |
| 220 | function Img({ src = '', ...props }: React.ComponentProps<'img'>) { |
| 221 | src = use(imgSrc(src)) |
nothing calls this directly
no outgoing calls
no test coverage detected