(version: string)
| 22 | |
| 23 | // this is the backend that is compatible with all older React versions |
| 24 | function isMatchingRender(version: string): boolean { |
| 25 | return !hasAssignedBackend(version); |
| 26 | } |
| 27 | |
| 28 | export default function attachRenderer( |
| 29 | hook: DevToolsHook, |
no test coverage detected