mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
bcfac603f0
* added storybook * added avatar component * added button story * added dropdown button story * removed unused ellipsis component * cleaned up modal path * reorganized enroll secrets table file * added flash story; removed unused persistent flash * added fleet ace story * added checkbox story * added dropdown story * added input story * fixed storybook build * fixed avatar * added input with icon story * added radio button story * added select targets dropdown story * added slider story * added tooltip story * added info banner story * removed unused loaders; added spinner story * added modal story * removed unused NumberPill * added pagination story * lint fixes * added documentation to run * modified documentation * fixed corelayout test * fixed format for date-fns * fixed date format that breaks tests * wait for page
31 lines
655 B
TypeScript
31 lines
655 B
TypeScript
import React from "react";
|
|
import { Meta, Story } from "@storybook/react";
|
|
import { noop } from "lodash";
|
|
|
|
// @ts-ignore
|
|
import Pagination from ".";
|
|
|
|
import "../../index.scss";
|
|
|
|
interface IPaginationProps {
|
|
currentPage: number;
|
|
resultsPerPage: number;
|
|
resultsOnCurrentPage: number;
|
|
onPaginationChange: () => void;
|
|
}
|
|
|
|
export default {
|
|
component: Pagination,
|
|
title: "Components/Pagination",
|
|
args: {
|
|
currentPage: 1,
|
|
resultsPerPage: 10,
|
|
resultsOnCurrentPage: 10,
|
|
onPaginationChange: noop,
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<IPaginationProps> = (props) => <Pagination {...props} />;
|
|
|
|
export const Default = Template.bind({});
|