Created
August 15, 2017 21:09
-
-
Save JoseGonzalez321/6cd5b95ce8be3f007228dbb4436d6e14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
function RobotMaster(props) { | |
return ( | |
<li> | |
<img src={props.avatar}/> {props.name} -> {props.weapon} | |
</li> | |
) | |
} | |
export default RobotMaster |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment