Files
app.zeusln.zeus/index.js
T
Evan 83bc48263d use RN RandomBytes synchronously
Keysend now working end-to-end
2020-05-05 17:40:36 -04:00

13 lines
285 B
JavaScript

/**
* @format
* @lint-ignore-every XPLATJSCOPYRIGHT1
*/
import {AppRegistry} from 'react-native';
import 'react-native-gesture-handler';
import './shim.js'
import App from './App.tsx';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);