mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-02-09 16:23:40 +00:00
11 lines
223 B
JavaScript
11 lines
223 B
JavaScript
/**
|
|
* @format
|
|
* @lint-ignore-every XPLATJSCOPYRIGHT1
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|