12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
import { View, Text } from 'react-native'
|
|
import React from 'react'
|
|
|
|
const App = () => {
|
|
return (
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
<Text style={{ fontSize: 24, fontWeight: 'bold' }}>App</Text>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
export default App |