import React, { useMemo } from 'react'; import Table from '../index'; import { DataType } from '../Table'; const JSXColumnsNest: React.FunctionComponent = () => { const data = useMemo(() => { const _data = []; for (let i = 0; i < 100; i++) { const age = (i * 1000) % 149 ; const name = `Edward King ${i}`; _data.push({ key: `${ i}`, company: { name: 'ByteDance', address: 'No. 48, Zhichun Road', }, name, age, address: `No ${i + 1}, Zhongguancun Street`, description: `My name is ${name}, I am ${age} years old, living in No ${i + 1}, Zhongguancun Street`, }); } return _data; }, []); return (