React app notes
Building React App 1. download npm, react 2. need tabs, use material-ui [npm install @material-ui/core] 3. integrate tabs w/ react router video: https://bonsaiilabs.com/material-ui-tabs-react-router/ 4. how to implement a clicker: https://github.com/Alaricus/clicker-tutorial 5. difference between hooks to update state in functions, and the more standard way to do it in the constructor () { this.state = {} } for classes : https://reactjs.org/docs/hooks-state.html Intermediate apps: - Basic clicker - More advanced clicker Notes: Good example (Particle clicker): https://github.com/particle-clicker/particle-clicker/ Search Bar: Search Bar: https://www.emgoto.com/react-search-bar/ Conditional Rendering: https://reactjs.org/docs/conditional-rendering.html Local Storage tutorial: https://programmingwithmosh.com/react/localstorage-react/ React State: https://blog.logrocket.com/modern-guide-react-state-patterns/