mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
22 lines
458 B
JavaScript
22 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 } },
|
||
|
},
|
||
|
}
|