@hyext/builder-neorn
Version:
neo react-native builder for hyext
20 lines (16 loc) • 341 B
JavaScript
import React from 'react'
import { Text, View, Image } from 'react-native'
const styles = {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}
const App = () => {
return (
<View style={ styles }>
<Text>Hello Huya!</Text>
<Image source={require('../assets/logo.png')}/>
</View>
)
}
export default App