Skip to content

Commit 6c62e90

Browse files
Add itemsPerPage and totalItems to the table pagination story args.
1 parent 85f9d09 commit 6c62e90

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

apps/storybook/src/Pagination.stories.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,15 @@ NavWithIcons.args = {
7171
export const Table = Template.bind({});
7272
Table.args = {
7373
layout: "table",
74+
itemsPerPage: 10,
75+
totalItems: 100,
7476
};
7577

7678
export const TableWithIcons = Template.bind({});
7779
TableWithIcons.storyName = "Table with icons";
7880
TableWithIcons.args = {
7981
layout: "table",
8082
showIcons: true,
83+
itemsPerPage: 10,
84+
totalItems: 100,
8185
};

0 commit comments

Comments
 (0)