react-book
react-book copied to clipboard
From apprentice to master (CC BY-NC-ND)
In `manuscript/getting_started/03_implementing_notes.md` we have: ``` ReactDOM.render( leanpub-start-delete Hello world, leanpub-end-delete leanpub-start-insert , leanpub-end-insert document.getElementById('app') ); ``` The (recently) downloaded MOBI version, however, keeps showing the `Hello world` line. No idea...
I found the syntax in this part not explained. After the 1st curly brace It is going into javascript with notes.map, but then it goes back out when it hits...
" If you try debugging it, you can see the ids should change if you refresh. You can verify this easily either by inserting a console.log(notes); line or a debugger;...
The idea would be to discuss design techniques you might use for designing your own components. I could discuss [Reactabular](https://github.com/bebraw/reactabular) and similar components of mine in detail there.
Basically we would port the application to CSS Modules here. Related to #404.
Recently been experimenting with some of React's API and found it extremely useful composing components, namely `React.cloneElement` , `React.createElement` ,`React.Children` . Though it has been extremely useful the documents and...
This way, someone may know if their code matches what you actually have mid way in the chapter. example folder structure - `02_developing_with_webpack/kanban_app` - [`a_setting-up-assets`](https://github.com/survivejs/webpack_react/blob/dev/manuscript/02_developing_with_webpack.md#setting-up-assets) - [`b_splitting-up-the-configuration`](https://github.com/survivejs/webpack_react/blob/dev/manuscript/02_developing_with_webpack.md#splitting-up-the-configuration) - (even more...
This is an advanced topic. It would be good to discuss various available libraries such as [react-a11y](https://www.npmjs.com/package/react-a11y) and basic approaches to i18n. Webpack's [i18n-webpack-plugin](https://github.com/webpack/i18n-webpack-plugin) should be discussed.
Just adding this here so I can keep track of this. Most likely this will go to a little effort of its own.
It could be a good idea to discuss common routing approaches like [react-router](https://github.com/rackt/react-router). Things are starting to get more stable. I don't see this as a priority issue yet, though....