2023-11-08 20:37:01 -03:00
|
|
|
import {AppRegistry} from 'react-native';
|
|
|
|
import {name as appName} from './app.json';
|
2023-12-06 00:39:45 -03:00
|
|
|
import App from './src/presentation/screens/App';
|
2023-11-08 20:37:01 -03:00
|
|
|
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|