Closed gstark closed 5 years ago
Your Herd
component isn't needed since it just renders a single Catbox
(you need one or the other, but not both)
And Catbox
should really use another component called Cat
since the code inside your map
is large enough to warrant making that a specific component.
Your homework was marked: Meets Expectations
“Well done!” — via Gavin Stark
Your Octodex is amazing. It has revolutionized the Github Octodex experience and more people are viewing Octocats on their mobile devices than ever.
However, the code is repetitive and isn't yet setup to work with an API.
Your task now is to refactor the static Octodex into a static (non-API) version in React.
You'll identify the main
Component
s on the page and create React components for each, breaking down thoseComponent
s into smaller ones as needed.Objectives
Component
screate-react-app
to build a React projectStretch Objectives
Array.prototype.map
to render a collection of components in ReactExplorer Mode
<App>
component.index.css
render
method ofApp
and have it render your main components.render
method of those components.this.props
to dynamically customize the components that need it.Adventure Mode
array
and usemap
to generate the Octocat componentsEpic Mode
array
of Octocats in aoctocats.json
file andimport
that into your app.fetch
api to retrieve the list of Octocats from this api insteadAdditional Resources