Skip to content

Commit 56167da

Browse files
authored
Merge pull request #95 from timgates42/bugfix_typo_browser
docs: fix simple typo, browswer -> browser
2 parents c1fb26c + c68dacc commit 56167da

File tree

1 file changed

+1
-1
lines changed
  • examples/frontend-rendering-with-webpack

1 file changed

+1
-1
lines changed

examples/frontend-rendering-with-webpack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Running the example
22
===================
33

4-
As mentioned in the ***Using React on the front-end*** section, [Webpack](https://webpack.github.io/) is used to bundle the respective js files into `dist.js` and included in `index.html`. To make React attributes like `onClick` etc. work, the app has to be re-rendered (along with all the props passed down) when it loads on the browswer. React is intelligent enough to not re-paint the browser and only update the changes, thus adding all the component properties.
4+
As mentioned in the ***Using React on the front-end*** section, [Webpack](https://webpack.github.io/) is used to bundle the respective js files into `dist.js` and included in `index.html`. To make React attributes like `onClick` etc. work, the app has to be re-rendered (along with all the props passed down) when it loads on the browser. React is intelligent enough to not re-paint the browser and only update the changes, thus adding all the component properties.
55

66
In this example, the basic_rendering example is modified to submit the Comment Form through ajax and update the Comment List by fetching the updated comments and rendering the application with new props.
77

0 commit comments

Comments
 (0)