subtracks/index.js
austinried 0f1e10d50f basic tab navigation
other things
2021-06-18 13:00:12 +09:00

15 lines
396 B
JavaScript

import 'react-native-gesture-handler';
import 'react-native-get-random-values';
import { AppRegistry, LogBox } from 'react-native';
// ignore recoil's timer warning on android:
// https://github.com/facebookexperimental/Recoil/issues/1030
LogBox.ignoreLogs(["timer"]);
import App from './App';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);