import { useTranslation } from "react-i18n-lite"; interface ReaderLoadingScreenProps { showMessage?: boolean; } export function ReaderLoadingScreen({ showMessage = true }: ReaderLoadingScreenProps) { const { t } = useTranslation(); return (
{t("reader.loading")}
}