react-query#ReactQueryConfigProvider JavaScript Examples
The following examples show how to use
react-query#ReactQueryConfigProvider.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app.js From Quest with MIT License | 6 votes |
function App({ store }) {
return (
<ReactQueryConfigProvider config={queryConfig}>
<HashRouter>
<ErrorBoundary
displayStacktrace
message={
<div>
<ExternalLink href="https://github.com/hverlin/Quest/issues">
Report an issue on Github
</ExternalLink>
</div>
}
>
<AppBody store={store} />
</ErrorBoundary>
</HashRouter>
</ReactQueryConfigProvider>
);
}