Add react native js components

This commit is contained in:
Jannis Mattheis
2018-05-12 21:00:29 +02:00
committed by Jannis Mattheis
parent c3743cde25
commit ea20a6418d
6 changed files with 220 additions and 0 deletions

6
index.js Normal file
View File

@@ -0,0 +1,6 @@
import { AppRegistry, YellowBox } from 'react-native';
import App from './App';
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);
AppRegistry.registerComponent('gotify', () => App);