mirror of
https://github.com/little-snow-fox/react-native-wechat-lib.git
synced 2025-12-06 15:26:49 +08:00
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
import App from './src/App';
|
|
import { name as appName } from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|
|
|
|
|
|
|
|
|