fix: cleanup

This commit is contained in:
2026-06-04 06:42:27 -05:00
parent f989b144cf
commit 654cfec147
52 changed files with 290 additions and 540 deletions
@@ -0,0 +1,15 @@
import { useTranslation } from "react-i18n-lite";
interface ReaderLoadingScreenProps {
showMessage?: boolean;
}
export function ReaderLoadingScreen({ showMessage = true }: ReaderLoadingScreenProps) {
const { t } = useTranslation();
return (
<div className="reader-loading">
<div className="spinner" />
{showMessage && <p>{t("reader.loading")}</p>}
</div>
);
}