import { useTranslation } from "react-i18n-lite"; interface ReaderTocButtonProps { onClick: () => void; } export function ReaderTocButton({ onClick }: ReaderTocButtonProps) { const { t } = useTranslation(); return ( ); }