7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
import { AppRegistry, YellowBox } from 'react-native';
|
|
import App from './App';
|
|
|
|
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);
|
|
|
|
AppRegistry.registerComponent('gotify', () => App);
|