ReactNative Hooks写法抽离子view

  const itemTop = (itemName: any, itemIcon: any) => {
    return
     
     
        99
        {itemName}
     

   

  }

  const IItemTop = (info: any) => {
    return
     
     
        99
        {info.itemName}
     

   

  }


  const HeadTop = () => {
    return
     
        {/* {itemTop('In', 'menuIn')} */}
       
       
        {itemTop('Received', 'menuReceived')}
     

     
        {itemTop('Sorted', 'menuSorted')}
       
        {itemTop('Check In', 'menuDelivered')}

     

      Operation
   

  }

ReactNative Hooks写法抽离子view_第1张图片

两种写法

你可能感兴趣的:(react,native,java,javascript)