diff --git a/README.md b/README.md index 2fc65ff424a..5db65149fbe 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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() { - ;... + return ... } ``` @@ -86,7 +86,7 @@ const config = { } function App() { - ;... + return ... } ```