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

Commit

Permalink
fix(Docs): Fix table example to use latest format.
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCoplan committed Oct 1, 2018
1 parent 258a28a commit d0cdf70
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/components/Table/TableBody.examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@
```jsx
<Table
bodyItems={[
[
{ content: "1" },
{ content: "Jon" },
{ content: <Button color="primary">Edit</Button> },
],
{
key: 1,
item: [
{ content: "1" },
{ content: "Jon" },
{ content: <Button color="primary">Edit</Button> },
],
},
]}
>
<Table.Header>
Expand Down

0 comments on commit d0cdf70

Please sign in to comment.