import { Meta, StoryObj } from '@storybook/react' import React from 'react' import { Text } from '../../index.js' import { Pagination, PaginationProps } from './index.js' export const Default: StoryObj = { render: (props) => ( item} /> ), } const meta: Meta = { title: 'DesignSystem/Molecules/Pagination', component: Pagination, args: { total: 10, page: 5, perPage: 1, }, } export default meta