mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
cbea5a5da9
* chore: update deps * feat: style of it * test: update test case * chore: adjust size limit
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
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: 'Full Name',
|
|
width: 100,
|
|
dataIndex: 'name',
|
|
fixed: 'left',
|
|
},
|
|
{
|
|
title: 'Age',
|
|
width: 100,
|
|
dataIndex: 'age',
|
|
},
|
|
{ title: 'Column 1', dataIndex: 'address', fixed: 'left' },
|
|
{ title: 'Column 2', dataIndex: 'address' },
|
|
{ title: 'Column 3', dataIndex: 'address' },
|
|
{ title: 'Column 4', dataIndex: 'address' },
|
|
{ title: 'Column 5', dataIndex: 'address' },
|
|
{ title: 'Column 6', dataIndex: 'address' },
|
|
{ title: 'Column 7', dataIndex: 'address' },
|
|
{ title: 'Column 8', dataIndex: 'address' },
|
|
{
|
|
title: 'Action 1',
|
|
fixed: 'right',
|
|
width: 90,
|
|
render: () => <a>action</a>,
|
|
},
|
|
{
|
|
title: 'Action 2',
|
|
width: 90,
|
|
render: () => <a>action</a>,
|
|
},
|
|
{
|
|
title: 'Action 3',
|
|
fixed: 'right',
|
|
width: 90,
|
|
render: () => <a>action</a>,
|
|
},
|
|
];
|
|
|
|
const data: DataType[] = [
|
|
{
|
|
key: '1',
|
|
name: 'John Brown',
|
|
age: 32,
|
|
address: 'New York Park',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Table columns={columns} dataSource={data} scroll={{ x: 1300 }} pagination={false} bordered />
|
|
);
|
|
|
|
export default App;
|