mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-17 10:40:38 -05:00
13 lines
427 B
JavaScript
13 lines
427 B
JavaScript
import 'react-native-gesture-handler'
|
|
// Initialize console override early - disable all console methods in production
|
|
import './src/utils/console-override'
|
|
import { AppRegistry } from 'react-native'
|
|
import App from './App'
|
|
import { name as appName } from './app.json'
|
|
import { enableFreeze, enableScreens } from 'react-native-screens'
|
|
|
|
enableScreens(true)
|
|
enableFreeze(true)
|
|
|
|
AppRegistry.registerComponent(appName, () => App)
|