mirror of
https://github.com/zhigang1992/react-native-chat-ui.git
synced 2026-06-19 18:13:45 +08:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import { AppRegistry } from 'react-native'
|
|
import { name as appName } from './app.json'
|
|
import App from './src/App'
|
|
|
|
AppRegistry.registerComponent(appName, () => App)
|