Write a program to display "Hello World" in react native?
Create a simple "Hello World" app by using modifying App.js file of FirstApp. Save the utility and reload by way of in reality pressing twice "R" or Ctrl+M (Reload).
BY Best Interview Question ON 27 May 2021
Example
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View>
<Text>Hello WorldText>
View>
);
}
}