Skip to content

Commit f23f110

Browse files
committed
update blog, fix wording
1 parent 448ce69 commit f23f110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/blog/2020-04-19-React-Native-Boilerplate-3.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ providing nice hooks.
8484
This project is a Redux-toolkit wrapper (yes... it's obvious 😅) used to write less code regarding classic CRUD operations.
8585
Redux-toolkit provide a lot of abstraction for async operations, but we always have to create a `loading` and `error`
8686
state and associated reducers.
87-
Redux-toolkit-wrapper abstract this async operations. For a classic *"fetch one user"* operation all you need to add these files :
87+
Redux-toolkit-wrapper abstract these async operations. For a classic *"fetch one user"* operation all you need is adding these files :
8888

8989
```javascript title="src/Store/User/FetchOne.js"
9090
import {
@@ -111,7 +111,7 @@ const sliceInitialState = {
111111
export default buildSlice('user', [FetchOne], sliceInitialState).reducer
112112
```
113113

114-
After that, you can use you state in you container like this :
114+
Next, you can use your state in your container like this :
115115

116116
```javascript
117117
import React, { useEffect } from 'react'

0 commit comments

Comments
 (0)