Skip to content

Commit

Permalink
docs(Table): rename TableExampleStriped example (#2739)
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter authored and levithomason committed Apr 27, 2018
1 parent 7e55c7d commit 4aad23b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Icon, Table } from 'semantic-ui-react'

const TableExampleStriped = () => (
const TableExampleCelledStriped = () => (
<Table celled striped>
<Table.Header>
<Table.Row>
Expand All @@ -15,7 +15,9 @@ const TableExampleStriped = () => (
<Icon name='folder' /> node_modules
</Table.Cell>
<Table.Cell>Initial commit</Table.Cell>
<Table.Cell collapsing textAlign='right'>10 hours ago</Table.Cell>
<Table.Cell collapsing textAlign='right'>
10 hours ago
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
Expand Down Expand Up @@ -49,4 +51,4 @@ const TableExampleStriped = () => (
</Table>
)

export default TableExampleStriped
export default TableExampleCelledStriped
2 changes: 1 addition & 1 deletion docs/app/Examples/collections/Table/Types/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Types = () => (
/>
<ComponentExample examplePath='collections/Table/Types/TableExamplePadded' />
<ComponentExample examplePath='collections/Table/Types/TableExampleCollapsing' />
<ComponentExample examplePath='collections/Table/Types/TableExampleStriped' />
<ComponentExample examplePath='collections/Table/Types/TableExampleCelledStriped' />

<ComponentExample
title='Definition'
Expand Down

0 comments on commit 4aad23b

Please sign in to comment.