Skip to content

Commit

Permalink
feat(docs): end sentences with dots on pagination props
Browse files Browse the repository at this point in the history
  • Loading branch information
deini committed Sep 17, 2019
1 parent 8a31391 commit b9effd4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/docs/PropTables/PaginationPropTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ export const PaginationPropTable: React.FC = () => {
return (
<PropTable>
<PropTable.Prop name="itemsPerPage" types="number" defaults="" required>
Indicates how many items are displayed per page
Indicates how many items are displayed per page.
</PropTable.Prop>
<PropTable.Prop name="currentPage" types="number" defaults="" required>
Indicates the page currently/initially displayed
Indicates the page currently/initially displayed.
</PropTable.Prop>
<PropTable.Prop name="totalItems" types="number" defaults="" required>
Indicates how many items in total will be displayed
Indicates how many items in total will be displayed.
</PropTable.Prop>
<PropTable.Prop name="itemsPerPageOptions" types="number[]" defaults="" required>
Indicates options for per-page ranges
Indicates options for per-page ranges.
</PropTable.Prop>
<PropTable.Prop name="onPageChange" types="(page: number) => void" required>
Function that will be called when a navigation arrow is clicked
Function that will be called when a navigation arrow is clicked.
</PropTable.Prop>
<PropTable.Prop name="onItemsPerPageChange" types="(range: number) => void" required>
Function that will be called when a new per-page range is selected
Function that will be called when a new per-page range is selected.
</PropTable.Prop>
</PropTable>
);
Expand Down

0 comments on commit b9effd4

Please sign in to comment.