Files
Trackeep/Others/mobile-app/index.js
T
Tomas Dvorak d27cf14110 first test
2026-02-08 14:14:55 +01:00

10 lines
226 B
JavaScript

/**
* Trackeep Mobile App
* React Native entry point
*/
import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);