(src: string)
| 22 | baseUrl, |
| 23 | }) => { |
| 24 | const renderScreenhot = (src: string): ReactNode => ( |
| 25 | <img src={`${baseUrl}${src}`} className={getClassName(src)} /> |
| 26 | ); |
| 27 | |
| 28 | if (typeof screenshotData === 'string') { |
| 29 | return renderScreenhot(screenshotData); |
no test coverage detected
searching dependent graphs…