Skip to content

Commit

Permalink
fix(table): update table stories structure on storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
anuradha9712 committed Nov 25, 2024
1 parent b91a12d commit 9036d99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ export const basicPagination = () => {
return (
<div className="vh-50">
<Card className="h-100 overflow-hidden">
<Table
data={data}
pageSize={6}
schema={schema}
withPagination={true}
paginationType={'basic'}
/>
<Table data={data} pageSize={6} schema={schema} withPagination={true} paginationType={'basic'} />
</Card>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ export const jumpPagination = () => {
return (
<div className="vh-50">
<Card className="h-100 overflow-hidden">
<Table
data={data}
pageSize={6}
schema={schema}
withPagination={true}
paginationType={'jump'}
/>
<Table data={data} pageSize={6} schema={schema} withPagination={true} paginationType={'jump'} />
</Card>
</div>
);
Expand Down

0 comments on commit 9036d99

Please sign in to comment.