Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Tools for managing promises or normalized client stores/caches are plentiful the

## The solution

React Query contains a set of hooks that attempt to address these issues. Ouf of the box, React Query:
React Query contains a set of hooks that attempt to address these issues. Out of the box, React Query:

- Dedupes similar requests at the application level
- Caches response data across similar requests
Expand Down Expand Up @@ -67,7 +67,7 @@ The `ReactQueryProvider` is a provider component that is necessary to use React
import { ReactQueryProvider } from '@tannerlinsley/react-query-temp'

function App() {
;<ReactQueryProvider>...</ReactQueryProvider>
return <ReactQueryProvider>...</ReactQueryProvider>
}
```

Expand All @@ -86,7 +86,7 @@ const config = {
}

function App() {
;<ReactQueryProvider config={config}>...</ReactQueryProvider>
return <ReactQueryProvider config={config}>...</ReactQueryProvider>
}
```

Expand Down