Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(DocsTablePage): Update DocsTablePage to use new shorthand table k…
Browse files Browse the repository at this point in the history
…ey prop.
  • Loading branch information
AaronCoplan committed Oct 1, 2018
1 parent 600ad1b commit 5281d49
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions example/src/documentation/DocsTablePage.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,14 @@ function DocsTablePage(): React.Node {
{ content: "Action" },
]}
bodyItems={[
[
{ content: "1" },
{ content: "Jon" },
{ content: <Button color="primary">Edit</Button> },
],
{
key: '1',
item: [
{ content: "1" },
{ content: "Jon" },
{ content: <Button color="primary">Edit</Button> },
]
},
]}
/>
</ComponentDemo>
Expand Down

0 comments on commit 5281d49

Please sign in to comment.