import { type Meta, type StoryObj } from '@storybook/react' import { Pagination } from '../index' const meta = { title: 'Components/Pagination', component: Pagination, args: { currentPage: 2, ariaLabelPage: 'Home', ariaLabelNextPage: 'Next page', ariaLabelPreviousPage: 'Previous page', pageCount: 10, onPageChange: () => { alert('Page changed') }, }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, }