redux-course-2
redux-course-2 copied to clipboard
In class project for TylerMcGinnis.com's "Redux" course.
Bumps [stringstream](https://github.com/mhart/StringStream) from 0.0.5 to 0.0.6. Commits fee31c5 0.0.6 2f4a9d4 Merge pull request #9 from mhart/fix-buffer-constructor-vuln afbc744 Ensure data is not a number in Buffer constructor See full diff in...
Bumps [diff](https://github.com/kpdecker/jsdiff) from 3.4.0 to 3.5.0. Changelog Sourced from diff's changelog. v3.5.0 - March 4th, 2018 Omit redundant slice in join method of diffArrays - 1023590 Support patches with empty...
Hey @tylermcginnis! In the **Poll state** video you're writing `mapStateToProps` for `Poll` component, which contains code to figure out answer to the poll of currently authenticated user: ```js const vote...
https://github.com/tylermcginnis/redux-polls/blob/fd31dd74c883eec7e231968c7cfcd109cfd57e59/src/components/Leaderboard.js#L36 The compare function passed into the sort function should use a `-` instead of a `>`. `.sort((a, b) => b.polls + b.answers - (a.polls + a.answers))`