A simple task using redux
, react
and redux-thunk
.
Use your http library of choice (fetch
, axios
, etc.) to interface with the Github Developer API. Your app should allow users to search
for Github accounts via freetext input field, and display a list of all repositories owned by that account.
Ideally, you'll use these standards:
Redux
to manage your application stateReact
class components for stateful components with logicReact
stateless functional components for presenting UIstyled-components
to style your app (just some simple styles will do!)
Use create-react-app
to bootstrap your application.