({ name, length })
| 1 | function ResourceItem({ name, length }) { |
| 2 | return ` |
| 3 | <li> |
| 4 | <a href="${name}">/${name}</a> |
| 5 | <sup>${length ? `${length}x` : 'object'}</sup> |
| 6 | </li> |
| 7 | ` |
| 8 | } |
| 9 | |
| 10 | function ResourceList({ db }) { |
| 11 | return ` |
no outgoing calls
no test coverage detected
searching dependent graphs…