import React from 'react'; export interface IPageNavItem { active?: boolean; children: React.ReactNode; onClick?(): void; [x: string]: any; } export const PageNavItem: React.FC = (props) => { const { active, children, onClick, ...otherProps } = props; return (
  • ); };