mirror of
https://github.com/zhigang1992/agora-react-native-rtm.git
synced 2026-01-12 22:45:41 +08:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import { AppRegistry } from 'react-native';
|
|
import { App } from './App';
|
|
import { name as appName } from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|