app.js 320 Bytes
/**
 * Created by Cassie on 208/03/21.
 */
import { AppRegistry } from 'react-native';
import index from './index.js';

if (!__DEV__) {
    global.console = {
        info: () => {},
        log: () => {},
        warn: () => {},
        error: () => {},
    };
}
AppRegistry.registerComponent('metroApp', () => index);