You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
673 B
28 lines
673 B
/* eslint-disable no-console,func-names,react/no-multi-comp */
|
|
import Table from '../index'
|
|
import '../assets/index.less'
|
|
|
|
const data = []
|
|
|
|
export default {
|
|
render () {
|
|
const columns = [
|
|
{ title: 'title1', dataIndex: 'a', key: 'a', width: 100 },
|
|
{ id: '123', title: 'title2', dataIndex: 'b', key: 'b', width: 100 },
|
|
{ title: 'title3', dataIndex: 'c', key: 'c', width: 200 },
|
|
{
|
|
title: 'Operations', dataIndex: '', key: 'd', render () {
|
|
return <a href='#'>Operations</a>
|
|
},
|
|
},
|
|
]
|
|
return (
|
|
<div>
|
|
<h2>simple table</h2>
|
|
<Table columns={columns} data={data} />
|
|
</div>
|
|
)
|
|
},
|
|
}
|
|
|