mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
12 lines
315 B
JavaScript
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);
|