Skip to content

Add axios for API token with react-query #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 28, 2022
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions hackathon/jimmy-punchline/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GENIUS_API_KEY=
3 changes: 3 additions & 0 deletions hackathon/jimmy-punchline/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ web-build/

# macOS
.DS_Store

.env

13 changes: 8 additions & 5 deletions hackathon/jimmy-punchline/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ import * as eva from "@eva-design/eva";
import { ApplicationProvider } from "@ui-kitten/components";
import { Navigator } from "./src/navigation/Navigator";
import { QueryClient, QueryClientProvider } from "react-query";
import AxiosProvider from "./src/context/AxiosProvider";

const queryClient = new QueryClient();

export default () => (
<QueryClientProvider client={queryClient}>
<ApplicationProvider {...eva} theme={eva.light}>
<Navigator />
</ApplicationProvider>
</QueryClientProvider>
<AxiosProvider>
<QueryClientProvider client={queryClient}>
<ApplicationProvider {...eva} theme={eva.light}>
<Navigator />
</ApplicationProvider>
</QueryClientProvider>
</AxiosProvider>
);
1 change: 1 addition & 0 deletions hackathon/jimmy-punchline/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
## Getting Started

```console
cp .env.sample .env
yarn
yarn ios
```
Expand Down
387 changes: 387 additions & 0 deletions hackathon/jimmy-punchline/api/search.json

Large diffs are not rendered by default.

Loading