(value: string)
| 13 | }; |
| 14 | |
| 15 | const getClassName = (value: string) => |
| 16 | value.endsWith('.gif') |
| 17 | ? 'gifScreenshot' |
| 18 | : `tabScreenshot${value.includes('full-width') ? 'full-width' : ''}`; |
| 19 | |
| 20 | const ScreenshotTabs: React.FC<ScreenshotTabsProps> = ({ |
| 21 | screenshotData, |
no outgoing calls
no test coverage detected
searching dependent graphs…