import type { Meta, StoryObj } from "@storybook/react"; import { useState } from "react"; import { Pagination } from "@managemate/react"; const meta = { title: "Navigation/Pagination", component: Pagination, tags: ["autodocs"], } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => { const [page, setPage] = useState(3); return ; }, };