Files
anitak 65a9ee0f07
RN APK Build / build (push) Has been cancelled
some changes
2026-04-20 12:14:17 +05:30

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