import { __ } from "@wordpress/i18n"; import classnames from "classnames"; import { useGlobalState } from "../state/global"; export const ButtonNav = ({ show }: { show?: boolean }) => { const { page, nextPage, prevPage, totalPages, currentTheme } = useGlobalState(); if (!show || totalPages === 0) return null; return (
); };