5656 $ npm install react react-dom
5757 ```
5858
59+ **[⬆ back to top](#table-of-contents)**
5960---
6061
6162## No configuration
@@ -80,7 +81,8 @@ Just start with React no configuration (run the scripts bellow in your terminal)
8081 ```
8182* Go to the browser by `URL` bellow and see your beautiful application
8283 - [localhost:8080](http://localhost:8080)
83-
84+
85+ **[⬆ back to top](#table-of-contents)**
8486---
8587
8688## ReactDOM
@@ -92,6 +94,7 @@ import ReactDOM from 'react-dom';
9294ReactDOM.render( <h1 >Hello React Ladies</h1 >, document.getElementById('root') );
9395```
9496
97+ ** [ ⬆ back to top] ( #table-of-contents ) **
9598---
9699
97100## Functional Stateless Component
@@ -120,6 +123,7 @@ const Button = ({ onClick, className = 'button', children }) =>
120123export default Button ;
121124```
122125
126+ ** [ ⬆ back to top] ( #table-of-contents ) **
123127---
124128
125129## Class Component
@@ -162,6 +166,7 @@ export default MyComponent;
162166
163167```
164168
169+ ** [ ⬆ back to top] ( #table-of-contents ) **
165170---
166171
167172## Composition
@@ -198,6 +203,7 @@ ReactDOM.render(
198203 document .getElementById (´root´)
199204);
200205
206+ ** [⬆ back to top](#table- of - contents)**
201207```
202208
203209## Module component
@@ -243,6 +249,7 @@ ReactDOM.render (
243249
244250```
245251
252+ ** [ ⬆ back to top] ( #table-of-contents ) **
246253---
247254
248255## Hot Module Replacement
@@ -262,6 +269,7 @@ if (module.hot) {
262269}
263270```
264271
272+ ** [ ⬆ back to top] ( #table-of-contents ) **
265273---
266274
267275## Props
@@ -292,6 +300,9 @@ class Index extends Component {
292300export default Index ;
293301```
294302
303+ ** [ ⬆ back to top] ( #table-of-contents ) **
304+ ---
305+
295306## State
296307
297308``` JS
@@ -315,6 +326,9 @@ class App extends Component {
315326export default App ;
316327```
317328
329+ ** [ ⬆ back to top] ( #table-of-contents ) **
330+ ---
331+
318332## Methods and Events
319333
320334``` JS
@@ -338,6 +352,9 @@ class App extends Component {
338352export default App ;
339353```
340354
355+ ** [ ⬆ back to top] ( #table-of-contents ) **
356+ ---
357+
341358## State manipulation
342359
343360``` JS
@@ -391,8 +408,11 @@ class App extends Component {
391408
392409export default App ;
393410```
394- ---
395411
412+
413+ ** [ ⬆ back to top] ( #table-of-contents ) **
414+ ---
415+ d
396416## Bindings
397417
398418``` JS
0 commit comments