mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
f8ab7c32ea
Add pagination to the gallery GitOrigin-RevId: 7107133da5e5ccf316235a6688070203c8bfa566
21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
import React from 'react'
|
|
|
|
import Pagination from '../js/shared/components/pagination'
|
|
|
|
export const Interactive = args => {
|
|
return <Pagination {...args} />
|
|
}
|
|
|
|
export default {
|
|
title: 'Pagination',
|
|
component: Pagination,
|
|
args: {
|
|
currentPage: 1,
|
|
totalPages: 10,
|
|
handlePageClick: () => {},
|
|
},
|
|
argTypes: {
|
|
currentPage: { control: { type: 'number', min: 1, max: 10, step: 1 } },
|
|
totalPages: { control: { disable: true } },
|
|
},
|
|
}
|