/* 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 = ({ index, onClick }) => { return (
  • onClick(index)}> {index + 1}
  • ) }