You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,11 @@ yarn add @dilane3/gx
34
34
35
35
## Prerequisites
36
36
37
-
This library doesn't work properly in strict mode. So to avoid some issues, please disable strict mode in your react application first before using it.
37
+
```bash
38
+
Since version `1.4.0` of `gx`, you can use it with `strict mode` enabled.
39
+
```
40
+
41
+
But, if you are using a version below `1.4.0`, you have to disable `strict mode` in your react application.
38
42
39
43
### Disabling strict mode on React
40
44
@@ -99,7 +103,13 @@ For handle it, there is a special `createSignal` function for this case.
99
103
100
104
**Actions** represent functions that act to the state and make it changing over the time.
101
105
102
-
Your have to specify these `actions` when you create yours `signals`.
106
+
You have to specify these `actions` when you create yours `signals`.
107
+
108
+
```txt
109
+
Since version `1.4.0` of `gx`, you can use `async` actions.
110
+
```
111
+
112
+
You can read more about it on the [documentation](https://gx.dilane3.com/docs/guide/async-actions)
0 commit comments