nostros/App.tsx

14 lines
343 B
TypeScript
Raw Normal View History

2022-10-31 00:37:42 +00:00
import App from './frontend'
import { Buffer as SafeBuffer } from 'safe-buffer'
import { randomBytes } from '@noble/hashes/utils'
2023-01-08 19:41:13 +00:00
import 'text-encoding-polyfill'
2023-01-13 11:51:30 +00:00
import 'react-native-gesture-handler'
import { LogBox } from 'react-native'
2022-10-24 17:27:31 +00:00
2022-11-02 22:11:43 +00:00
global.Buffer = SafeBuffer
global.randomBytes = randomBytes
2022-11-02 02:35:11 +00:00
2023-01-21 20:32:17 +00:00
LogBox.ignoreAllLogs()
2022-10-31 00:37:42 +00:00
export default App