@@ -51,20 +51,20 @@ assumptions about the shape of your data or the type of request.
51
51
52
52
> Versions 1.x and 2.x of ` react-async ` on npm are from a different project abandoned years ago. The original author was
53
53
> kind enough to transfer ownership so the ` react-async ` package name could be repurposed. The first version of
54
- > ` < Async> ` is v3.0.0.
54
+ > React Async is v3.0.0.
55
55
56
56
## Rationale
57
57
58
- ` < Async> ` is different in that it tries to resolve data as close as possible to where it will be used, while using a
58
+ React Async is different in that it tries to resolve data as close as possible to where it will be used, while using a
59
59
declarative syntax, using just JSX and native promises. This is in contrast to systems like Redux where you would
60
60
configure any data fetching or updates on a higher (application global) level, using a special construct
61
61
(actions/reducers).
62
62
63
- ` < Async> ` works really well even in larger applications with multiple or nested data dependencies. It encourages loading
63
+ React Async works really well even in larger applications with multiple or nested data dependencies. It encourages loading
64
64
data on-demand and in parallel at component level instead of in bulk at the route / page level. It's entirely decoupled
65
65
from your routes, so it works well in complex applications that have a dynamic routing model or don't use routes at all.
66
66
67
- ` < Async> ` is promise-based, so you can resolve anything you want, not just ` fetch ` requests.
67
+ React Async is promise-based, so you can resolve anything you want, not just ` fetch ` requests.
68
68
69
69
## Install
70
70
@@ -277,7 +277,7 @@ render() {
277
277
278
278
## Helper components
279
279
280
- ` < Async> ` provides several helper components that make your JSX even more declarative.
280
+ React Async provides several helper components that make your JSX even more declarative.
281
281
They don't have to be direct children of ` <Async> ` and you can use the same component several times.
282
282
283
283
### ` <Async.Loading> `
0 commit comments