-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(apps/app): reactotron-react-native 설치 * feat(apps/app): @react-native-async-storage/async-storage 설치 * feat(apps/app): reactotron react native 관련 설정 파일 추가 * feat(apps/app): reactotron 불러오는 구문 추가 * feat(apps/app): networking 추적 기능 추가 * feat(apps/app): 글로벌 에러, 글로벌 로그 추적 기능 추가 * fix(apps/web): es6 방식으로 구문 수정
- Loading branch information
1 parent
245fce2
commit 0994650
Showing
5 changed files
with
59 additions
and
9 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
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,18 @@ | ||
import Reactotron, { | ||
networking, | ||
trackGlobalErrors, | ||
trackGlobalLogs, | ||
} from 'reactotron-react-native'; | ||
import AsyncStorage from '@react-native-async-storage/async-storage'; | ||
|
||
Reactotron.setAsyncStorageHandler(AsyncStorage) | ||
.configure({ | ||
name: 'greeenai', | ||
}) | ||
.useReactNative({ | ||
asyncStorage: true, | ||
}) | ||
.use(networking()) | ||
.use(trackGlobalErrors()) | ||
.use(trackGlobalLogs()) | ||
.connect(); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.