mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-16 16:14:43 -04:00
22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
/*
|
|
SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import React from 'react'
|
|
|
|
export interface PageItemProps {
|
|
onClick: (index: number) => void
|
|
index: number
|
|
}
|
|
|
|
export const PagerItem: React.FC<PageItemProps> = ({ index, onClick }) => {
|
|
return (
|
|
<li className='page-item'>
|
|
<span className='page-link' role='button' onClick={() => onClick(index)}>
|
|
{index + 1}
|
|
</span>
|
|
</li>
|
|
)
|
|
}
|