Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: parz3val <iamtheparzival@gmail.com>
  • Loading branch information
parz3val committed Jan 2, 2025
1 parent 32114b3 commit bb7f0dd
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions mods/webui/src/stories/pagination/Pagination.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { fn } from "@storybook/test";

/**
* Story of the Pagination component
* */
* */

const meta = {
title: "Shared Components/Pagination",
Expand Down Expand Up @@ -53,44 +53,43 @@ const meta = {
control: "number"
}
}
} satisfies Meta<typeof Chip>;
} satisfies Meta<typeof Pagination>;

export default meta;

type Story = StoryObj<typeof meta>;

/**
* Example of a Pagination with the count of 32
* and default rowsPerpage of 10
* and default rowsPerPage of 10
*/
export const Default: Story = {
args: {
count: 32,
disabled: false,
disabled: false
}
};

/**
* Example of Pagination Component with the count of 4269
* and explicit 69 per page
* and explicit rowsPerPage of 69
*/

export const WithExplicitOnPage: Story = {
args: {
count: 4269,
disabled: false,
rowsPerPage: 69,
rowsPerPage: 69
}
}
};

/**
* Example of disabled pagination component
* Example of disabled pagination component
*/

export const Disable: Story = {
args: {
count: 100,
disabled: true,
disabled: true
}
}

};

0 comments on commit bb7f0dd

Please sign in to comment.