2024-03-24 03:47:18 +03:00
|
|
|
/**
|
|
|
|
|
* @format
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import {AppRegistry} from 'react-native';
|
2024-03-24 14:23:08 +03:00
|
|
|
import App from './src/App';
|
2024-03-24 03:47:18 +03:00
|
|
|
import {name as appName} from './app.json';
|
2024-03-24 14:05:32 +03:00
|
|
|
import './src/localization/i18n';
|
2024-03-24 03:47:18 +03:00
|
|
|
|
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|