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:
Reduxto manage your application stateReactclass components for stateful components with logicReactstateless functional components for presenting UIstyled-componentsto style your app (just some simple styles will do!)
Use create-react-app to bootstrap your application.