bsky-app/src/index.js

13 lines
222 B
JavaScript
Raw Normal View History

2022-06-08 22:52:12 +02:00
/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './App';
AppRegistry.registerComponent('App', () => App);
AppRegistry.runApplication('App', {
rootTag: document.getElementById('root'),
});