SEARCHRESULTS
- Allow for pagination and return more than 10 results.
FILTER / SORT
- Add filter sort functionality for search results
NAVHEADER
- Use React Router and Auth so the logout isn't a page refresh.
REFACTOR
- Context API / Redux : too much prop drilling
STYLE
- App.js : find a way to make the login error message appear on the screen by the form field.
COMPLETED TASKS
Class format: // class GoogleAPIAdapter { // doSomething(){ //instance // }
// static doSomething(){ //class // }
// export default GoogleAPIAdapter
// // const inst = new GoogleAPIAdapter() //instance // inst.doSomething()
// GoogleAPIAdapter.doSomething() //class