initial project commit

This commit is contained in:
Gergely Hegedus 2023-09-01 14:02:13 +03:00
parent d8efc7c19c
commit bf2fab3aa1
63 changed files with 9861 additions and 1 deletions

9
index.js Normal file
View file

@ -0,0 +1,9 @@
/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);