now playing layout mock-up

This commit is contained in:
austinried
2021-06-14 11:14:58 +09:00
parent b38ba9aaed
commit 1b78acd5fa
5 changed files with 186 additions and 120 deletions

View File

@@ -1,9 +1,11 @@
/**
* @format
*/
import { AppRegistry, LogBox } from 'react-native';
// ignore recoil's timer warning on android:
// https://github.com/facebookexperimental/Recoil/issues/1030
LogBox.ignoreLogs(["timer"]);
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);