14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
import 'react-native-gesture-handler';
|
|
import './src/components/Language/appLanguage';
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './src/App';
|
|
|
|
// @ts-ignore
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|