react-native引入其他值到render函数中

function Cat() {
    return (
        
            I am a also cat!
        
    );
}

function Cat2() {
    return (
        
            I am a also cat!
        
    );
}
function HelloTest (){
  return  (
      
      Draft
  );
}

或者在render return方法外包写入

   const hello = "Maru";

引入到render

 {hello}
                {/*{hello3}*/}

                
                
                
                
                

目前通过引入箭头函数没有成功,不清楚为什么

const hello3 = () => (
        
            Draft2
        

完整的一个例子

import React from 'react';
import { Text, View } from 'react-native';
function Cat(props) {
  return (
    
      Hello, I am {props.name}!
    
  );
}
export default function Cafe() {
  return (
    
      
      
      
    
  );
}

你可能感兴趣的:(react-native)