|
6 | 6 |
|
7 | 7 | #### React-Native 0.32.0 & Redux 3.5.2 & React-Redux 4.4.5
|
8 | 8 |
|
9 |
| -This is a little bit more complex than my previous example, I added as many comments as I can so to prevent confusion. Take your time, there are a lot of |
10 |
| -things to read and undrestand. Open an issue if you need to clear something I will do my best to respond back. |
| 9 | +This is a little bit more complex than my previous example, I added as many |
| 10 | +comments as I can so to prevent confusion. Take your time, there are a lot of |
| 11 | +things to read and understand. Open an issue if you need to clear something I |
| 12 | +will do my best to respond back. |
11 | 13 |
|
12 | 14 | ### about this example
|
13 | 15 |
|
14 |
| -This example demonstrates my way of using React-Native and Redux for making apps. I found that |
15 |
| -using Stateless components makes my code a lot cleaner and simpler. However, using |
16 |
| -stateless components are hard, you have to think a lot. But in long run it will pay of. trust me ;) |
| 16 | +This example demonstrates my way of using React-Native and Redux for making |
| 17 | +apps. I found that using Stateless components makes my code a lot cleaner and |
| 18 | +simpler. However, using stateless components are hard, you have to think a lot. |
| 19 | +But in long run it will pay of. trust me ;) |
17 | 20 |
|
18 |
| -> I'm not say that Class components are bad. I'm just saying that start with Stateless components first. |
19 |
| -If you can't find any other solution, then use the Class Component. |
| 21 | +> I'm not say that Class components are bad. I'm just saying that start with |
| 22 | +> Stateless components first. If you can't find any other solution, then use the |
| 23 | +> Class Component. |
20 | 24 |
|
21 |
| -In this example, I'm using [ducks-modular-redux](https://github.com/erikras/ducks-modular-redux) pattern with a small tweak. |
| 25 | +In this example, I'm using [ducks-modular-redux][] pattern with a small tweak. |
| 26 | +[ducks-modular-redux]: https://github.com/erikras/ducks-modular-redux |
22 | 27 |
|
23 |
| -This example is also show casing how to use `thunk`. There is an action called `incrementWithDelay`. check that one out. |
| 28 | +This example is also show casing how to use `thunk`. There is an action called |
| 29 | +`incrementWithDelay`. Check that one out. |
24 | 30 |
|
25 | 31 |
|
26 | 32 | Cheers,
|
|
0 commit comments