mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-02-13 18:17:15 +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);
|