react-cardlist
Goals
export const robots = [
{
id: 1,
name: "Leanne Graham",
username: "Bret",
email: "Sincere@april.biz"
},
...
}Connecting the Pieces
ReactDOM.render(
<div>
<CardList robots={robots} />
</div>,
document.getElementById("root")
);The Card List
PropTypes
Last updated
Was this helpful?