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

From apprentice to master (CC BY-NC-ND)

Results 25 react-book issues
Sort by recently updated
recently updated
newest added

I have been following the examples in the currently online book at https://survivejs.com/react/introduction/ and was using version 2.5.6 of the boilerplate.git from https://github.com/survivejs/react-boilerplate.git When arriving at the chapter "Implementing Drag...

I am unable to successfully run npm install. I get this error.

There's an [example of string refs](https://github.com/survivejs/react-book/blob/dev/manuscript/getting_started/05_understanding_react_components.md#refs) in the book but official documentation [is considering](https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs) them as obsolete feature. Instead of: ```jsx ``` We should write: ```jsx this.input = el} />...

For some reason, I can't seem to get styling to work: I've added the className to the App/button `+ Add Note` and I've added the style to main.css: ``` .add-note...

In your code, you use the form `function.bind(null, callback)`, whereas the examples in the React documentation (e.g., [here](https://facebook.github.io/react/docs/handling-events.html) and [here](https://facebook.github.io/react/docs/conditional-rendering.html)) just use `function.bind(callback)`. Why is that? This is most likely...

At the end of this section, you say "If you click a `Note` twice to confirm the edit, you should see an `Uncaught Invariant Violation` error..." Instead, when I click...

After you update Notes.jsx with the delete functionality, you say: > "I defined a dummy callback for it [onDelete]." I believe this is referring to the line: `export default ({notes,...

After the initial changes for Note/delete, you show a screenshot with the delete 'x' display. Good. However, that screenshot also includes the text 'value:' preceding each task; I don't see...

When I go to view the Table of Contents (.mobi version on iPad Kindle) all I see is: ``` Table of Contents Introduction ``` Is this expected and planned for...

"...pass the data through a prop to Notes." I believe this is the first time you've referred to 'props' in the context of React. It would be helpful to include...