InterviewSolution
Saved Bookmarks
| 1. |
Write a program to display "Hello World" in react native? |
|
Answer» 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). Exampleimport 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> ); } } |
|