mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 04:24:56 -06:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import {name as appName} from './app.json';
|
|
import App from './js/App';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|