|
- import {createArtwork} from "../../components/artwork/ArtworkComponent";
- import {createPagination} from "./PaginationComponent";
-
- export default {
- title: 'Atoms/Pagination',
- args: {
- length: 5,
- current: 1,
- },
- argTypes: {
- length: {
- name: 'Seitenanzahl',
- },
- current: {
- name: 'Aktuelle Seite',
- }
- }
- }
-
- const Template = ({...args}) => {
- return createPagination({...args});
- };
-
- export const Pagination = Template.bind({});
- Pagination.args = {};
|