Skip to content

Commit

Permalink
Merge pull request #919 from coingaming/fix/table-first-columns
Browse files Browse the repository at this point in the history
fix(table): docs cleanup
  • Loading branch information
karl-kallavus committed Oct 7, 2020
2 parents 5f88dcb + e952e4c commit 181d656
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/table/src/README.mdx
Expand Up @@ -15,52 +15,43 @@ Based on [react-table](https://github.com/tannerlinsley/react-table)
const columnsInitial = [
{
Header: 'Name',
Footer: 'Name',
sticky: 'left',
columns: [
{
Header: 'First Name',
Footer: 'First Name',
accessor: 'firstName',
},
{
Header: 'Last Name',
Footer: 'Last Name',
accessor: 'lastName',
},
],
},
{
Header: 'Info',
Footer: 'Info',
columns: [
{
Header: 'Age',
Footer: 'age',
accessor: 'age',
width: 50,
},
{
Header: 'Visits',
Footer: 'Visits',
accessor: 'visits',
},
{
Header: 'Activity',
Footer: 'Activity',
accessor: 'activity',
},
{
Header: 'Status',
Footer: 'Status',
width: 60,
accessor: 'status',
},
],
},
{
Header: 'Progress',
Footer: ' ',
sticky: 'right',
columns: [
{
Expand Down

0 comments on commit 181d656

Please sign in to comment.