import { h } from 'preact'; import { Modal, ModalContent } from './Modal'; import styles from './css/ProgressModal.module.scss'; export interface ErrorProps { title: string; current: number | undefined; total: number | undefined; } export const ProgressModal = ({ title, current, total }: ErrorProps) => { if (current && total) { return (
); } else { return null; } };