mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
10 lines
226 B
JavaScript
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);
|