import React from "react"; import Typography from "@mui/material/Typography"; import { useRerender } from "../../ui/React/hooks"; import { Terminal } from "../../Terminal"; export function TerminalActionTimer(): React.ReactElement { useRerender(200); return {Terminal.action && Terminal.getProgressText()}; }