2 February 2020

Function component in react native


  • Function component example in react native
import React from 'react';
import {  Text, } from 'react-native';

 const  HomeScreen=()=> {
  return (
      <Text>Adi here...</Text>
  );
}
export default HomeScreen;

No comments:

Post a Comment