@@ -51,20 +51,20 @@ assumptions about the shape of your data or the type of request.
5151
5252> Versions 1.x and 2.x of ` react-async ` on npm are from a different project abandoned years ago. The original author was
5353> 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.
5555
5656## Rationale
5757
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
5959declarative syntax, using just JSX and native promises. This is in contrast to systems like Redux where you would
6060configure any data fetching or updates on a higher (application global) level, using a special construct
6161(actions/reducers).
6262
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
6464data on-demand and in parallel at component level instead of in bulk at the route / page level. It's entirely decoupled
6565from your routes, so it works well in complex applications that have a dynamic routing model or don't use routes at all.
6666
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.
6868
6969## Install
7070
@@ -277,7 +277,7 @@ render() {
277277
278278## Helper components
279279
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.
281281They don't have to be direct children of ` <Async> ` and you can use the same component several times.
282282
283283### ` <Async.Loading> `
0 commit comments