mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
e7aa014c31
* docs: init * chore: all types * docs: faq * chore: fix lint
45 lines
780 B
TypeScript
45 lines
780 B
TypeScript
import React from 'react';
|
|
import { Table } from 'antd';
|
|
import type { TableColumnsType } from 'antd';
|
|
|
|
interface DataType {
|
|
key: React.Key;
|
|
name: string;
|
|
age: number;
|
|
address: string;
|
|
}
|
|
|
|
const columns: TableColumnsType<DataType> = [
|
|
{
|
|
title: 'Name',
|
|
dataIndex: 'name',
|
|
},
|
|
{
|
|
title: 'Age',
|
|
dataIndex: 'age',
|
|
},
|
|
{
|
|
title: 'Address',
|
|
dataIndex: 'address',
|
|
},
|
|
];
|
|
|
|
const data: DataType[] = [];
|
|
|
|
for (let i = 0; i < 200; i += 1) {
|
|
data.push({
|
|
key: i,
|
|
name: 'Sample Name',
|
|
age: 30 + (i % 5),
|
|
address: `Sample Address ${i}`,
|
|
});
|
|
}
|
|
|
|
const App: React.FC = () => (
|
|
<div style={{ width: 300 }}>
|
|
<Table columns={columns} dataSource={data} size="small" pagination={{ defaultCurrent: 13 }} />
|
|
</div>
|
|
);
|
|
|
|
export default App;
|