Advertisement
Guest User

Untitled

a guest
May 27th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. # Advanced React Review
  2.  
  3. ### SC Details
  4. * REMINDER: The System Check will begin at 9:15am and end at 12:15am.
  5.  
  6. ### Lessons/Exercises You Should Review:
  7. * React Forms
  8. * React Grocery List Form
  9. * Address Form
  10. * Restaurant Recommendations
  11. * Unicorn Facilitation Code
  12.  
  13. * ES6 Promises and Fetch API
  14. * Brussels Sprouts Fetch
  15.  
  16. * React Router challenge
  17.  
  18. * Launch Academy FAQ Part 2 :star:
  19. * Bike Review Clinic
  20.  
  21. ### Tips
  22. * Take a moment to go line by line through your `server.js`. Understand how it works and how you might be utilizing it.
  23. * Take a moment to absorb the provided code you are given. Think about the structure of the app as it is currently set up
  24. before writing your own code. :star:
  25.  
  26. * Read your errors carefully!!!
  27. * Know that if you click on an error message, it will sometimes point to the offending code in React
  28. * Look for errors both in your console and in your terminal
  29. * Put debuggers at the top of render(), the top of stateless components, and inside of methods (to see if they are getting called and have the right arguments)
  30. * Double check that you are satisfying all of the criteria!!!
  31. * REREAD THE INSTRUCTIONS ONCE MORE
  32. * If you are stuck, don't be afraid to take a break. Additionally, don't be afraid to start over if need be (cautiously).
  33.  
  34. ### Concepts You Should Know
  35. * Everything from Week 3
  36. * Lifecycle methods (particularly `render` and `componentDidMount`
  37. * Setting up React forms and managing controlled components
  38. * Setting up React Router at the top of an app
  39. * On componentDidMount, loading up information from the backend and using it to create components in React
  40. * Posting the data from your React forms to the backend
  41.  
  42. ### Concepts You Won't Need to know
  43. * Foundation and/or CSS
  44. * Validations
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement