Core Components in React Native (View, Text, SafeAreaView)
Now, Let’s write our first Hello, World !! program in React Native, for this we’ll clean App.tsx and We’ll write the below given code
import React from 'react';
import { View, Text, SafeAreaView } from 'react-native';
function App() {
return (
...
natansh.hashnode.dev3 min read