Building Mobile Apps using JavaScript and React
React Native allows you to build mobile apps using only JavaScript, using the same design as React.
Companies already using React Native.
import React, { Component } from 'react'; import { Text, View } from 'react-native'; class Why_ReactNative extends Component { render() { return ( <View> <Text> React Native is easy to use as it it pure JavaScript and is less time consuming. </Text> <Text> React Native helps to develop real mobile apps and one cannot distinguish between an app developed using Swift, Objective C etc., and React Native. </Text> </View> ); } }
In the next blog, we will start with the basic installation.