fb-messenger
fb-messenger copied to clipboard
Implement React concepts incrementally to a messenger app, training from https://reactjs.academy
> The path /messages/:username/detail should display the UserDetail of a Conversation. The path /messages/:username should not display the UserDetail of a Conversation. You can navigate to /messages/:username/detail by clicking on...
The exercise requires you to install redux/react-redux in the styling-in-react branch. The versions of react/react-dom in that branch aren't compatible with the latest versions of redux/react-redux and cause confusing errors
In the latest commit, `styled-components` was added to the package.json along with the updated version of react. This makes part 1 of the exercise unnecessary: ``` Part 1, install styled-components...
After uncommenting the code for [part 3](https://github.com/leanjscom/fb-messenger/tree/styling-in-react#part-3-refactoring), running `npm start` throws errors:  When you `npm install` you can see this peer dependency error: > npm WARN [email protected] requires a...
if you go to the `redux` branch, there's an exercise that you need to implement your own version of redux. this version of redux is using the old context API,...