Files
bsky-social-app/index.js
T
2022-06-07 18:56:31 -05:00

10 lines
187 B
JavaScript

/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);