()
| 4 | const src = ['ambition-morty', 'awkward-morty', 'despise', 'pride-morty', 'surprise-morty']; |
| 5 | const prefix = 'https://raw.githubusercontent.com/jerryshew/design/master/png'; |
| 6 | const getImgs = function(){ |
| 7 | let rtn = []; |
| 8 | for (let i of src){ |
| 9 | rtn.push(<img key={i} src={`${prefix}/${i}.png`} style={{'width': '100%'}}/>); |
| 10 | } |
| 11 | return rtn; |
| 12 | }; |
| 13 | |
| 14 | const imgNodes = getImgs(); |
| 15 |
no outgoing calls
no test coverage detected
searching dependent graphs…