Initial commit

This commit is contained in:
Lei Nelissen
2020-06-16 17:51:51 +02:00
commit 50dd06a473
74 changed files with 14480 additions and 0 deletions

6
index.ts Normal file
View File

@@ -0,0 +1,6 @@
import 'react-native-gesture-handler';
import { AppRegistry } from 'react-native';
import App from './src/components/App';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);