mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-04 22:56:32 +08:00
Summary: `find js/react-native-github | xargs arc lint -a` Reviewed By: yungsters Differential Revision: D12902940 fbshipit-source-id: fd1158f7a0ec322cf89bc4f727943bff4600b399
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);
|