subtracks/index.js
2021-06-14 11:14:58 +09:00

12 lines
315 B
JavaScript

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);