Essetial React
Summary
Thank you so much for taking this course on Essential React
. We started with Hello World
, and JSX
, and getting a project started. Covered events, state
, state management with the object in functional form of setState
, knowing and unknowing components, and all of its various names, and made our way all the way to composition with component props, render props, and higher-order components. From here, you should have a pretty good grasp of how React components work. I’ve covered all of the essentials, but I’m sure you have a lot of questions left. Please check out some of the other courses. I’m always making more, and they should help clarify a few things for you. Thanks again!
- Overview
- Project setup
- ReactDOM.render and React.createElement
- JSX
- Functional components
- Props
- Class Components
- onClick and other events
- Component initial state
- setState - object form
- setState - functional form
- Conditional rendering in JSX
- this.props.children
- Fetching pokeapi data
- componentDidMount
- setState and fetch
- Lists with Array.map()
- componentWillReceiveProps
- Component props
- Render props
- Separation of Concerns with components
- Higher-order components
- defaultProps
- Render prop actions
- Summary