Closed gstark closed 6 years ago
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 Components on the page and create React components for each, breaking down those Components into smaller ones as needed.
Component
create-react-app
Array.prototype.map
<App>
index.css
render
App
this.props
array
map
octocats.json
import
https://github.com/AllanSeitz/reactocats.git
Your homework is: Meets Expectations
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.Additional Resources