-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from wednesday-solutions/dev
Recoil, PostHog, Sentry Integrations
- Loading branch information
Showing
89 changed files
with
3,387 additions
and
3,341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
JSON_PLACEHOLDER_API="https://jsonplaceholder.typicode.com" | ||
SIMPSONS_API="https://thesimpsonsquoteapi.glitch.me/" | ||
SENTRY_DSN= "YOU_SENTRY_DSN" | ||
POSTHOG_KEY= 'YOUR_POSTHOG_PROJECT_KEY' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,5 @@ buck-out/ | |
web-build/ | ||
dist/ | ||
reports | ||
coverage | ||
coverage | ||
.env.local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
auth.token=YOUR_SENTRY_AUTH_TOKEN | ||
|
||
defaults.org=YOUR_ORG_NAME | ||
defaults.project=YOUR_PROJECT_NAME | ||
|
||
defaults.url=https://sentry.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
import React from 'react'; | ||
import { Provider } from 'react-redux'; | ||
import { PersistGate } from 'redux-persist/lib/integration/react'; | ||
import { RecoilRoot } from 'recoil'; | ||
import { I18nextProvider } from 'react-i18next'; | ||
import 'react-native-gesture-handler'; | ||
import LanguageProvider from '@atoms/LanguageProvider'; | ||
import RootScreen from '@scenes/RootScreen'; | ||
import createStore from '@app/rootReducer'; | ||
import { translationMessages } from './i18n'; | ||
import 'react-native-gesture-handler'; | ||
|
||
const { store, persistor } = createStore(); | ||
import i18n from '@app/i18n'; | ||
|
||
const App = () => ( | ||
<Provider store={store}> | ||
<LanguageProvider messages={translationMessages}> | ||
<PersistGate loading={null} persistor={persistor}> | ||
<RecoilRoot> | ||
<I18nextProvider i18n={i18n}> | ||
<LanguageProvider> | ||
<RootScreen /> | ||
</PersistGate> | ||
</LanguageProvider> | ||
</Provider> | ||
</LanguageProvider> | ||
</I18nextProvider> | ||
</RecoilRoot> | ||
); | ||
|
||
export default App; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.