react-enlightenment icon indicating copy to clipboard operation
react-enlightenment copied to clipboard

A thoughtful and complete introduction to React.

Results 8 react-enlightenment issues
Sort by recently updated
recently updated
newest added

Hi, I was trying to read the book in my kindle, following the link seems it does not point to the correct address. https://github.com/FrontendMasters/react-enlightenment/blob/71e8c3f3af47a448f6577097401c8e1790b454fe/myIntro.md?plain=1#L13

Bumps [eslint](https://github.com/eslint/eslint) from 2.13.1 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...

dependencies

Original > Sounds simple until one realizes that React components can contained other React sub-components which can result in a complex tree of components. changed > Sounds simple until one...

6.7 says ``` Updating Phase follows this order: componentWillReceiveProps() shouldComponentUpdate() render() Children Life cycle methods componentWillUpdate() ``` but the docs say ["Invoked immediately before rendering when new props or state...

`The basic setup that has been describe` should be `The basic setup that has been described`.

Last JSFiddle: "MyComponent.propTyes" should be "MyComponent.propTypes"

Hi, i have found mistake in react hooks order. Paragraph 6.6 ``` Updating Phase follows this order: 1. componentWillReceiveProps() 2. shouldComponentUpdate() 3. render() 4. Children Life cycle methods 5. componentWillUpdate()...

One of the things that confused me when I was getting into React was the difference between `props` and `state`. I think passing down a prop called state could potentially...