Can anybody help me with correct syntax for filling in Table data using java script map function?
Seam like I do not now how to handle {{}} nested curly brackets…
<Table
          columnsConfig="80px 3fr 2fr 2fr 80px"
          data={[
            {detail && detail.map(fight, index) => (
              [
              <Avatar theme="image" />,
              'Moralis Magi',
              <Tag color="blue" text="Nft Collection"/>,
              '0x18...130e',
              <Icon fill="black" size={32} svg="more vert"/>
            ],)}
          }]
          header={[
            '',
            <span>Name</span>,
            <span>Type</span>,
            <span>Module</span>,
            ''
          ]}
          maxPages={3}
          onPageNumberChanged={function noRefCheck(){}}
          pageSize={5}
        />`Preformatted text`
 
      
    
