mirror of
https://github.com/tooot-app/app
synced 2024-12-26 17:32:26 +01:00
1ea6aff328
* To MMKV migration working * POC migrated font size settings * Moved settings to mmkv * Fix typos * Migrated contexts slice * Migrated app slice * POC instance emoji update * Migrated drafts * Migrated simple instance properties * All migrated! * Re-structure files * Tolerant of undefined settings * Can properly logging in and out including empty state
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
import { registerRootComponent } from 'expo'
|
|
|
|
import App from './src/App'
|
|
|
|
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
|
|
// It also ensures that whether you load the app in the Expo client or in a native build,
|
|
// the environment is set up appropriately
|
|
registerRootComponent(App)
|