import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Pagination } from './Pagination' const meta: Meta = { title: 'Pagination', component: Pagination } export default meta type Story = StoryObj export const Pages5: Story = { render: () => ( ) } export const Pages1000: Story = { render: () => ( ) }