0
0
KKKhalid Khan
React Native provides a built-in way to access Android and iOS views and text fields. You can use the View and Text components that come with React Native.
Library: react-native
Shortcut: reactnative.conatiner.stateless
import * as React from 'react';
import { View, Text } from 'react-native';
export interface AppProps {
}
export function App (props: AppProps) {
return (
<View>
<Text>App</Text>
</View>
);
}