bitburner-src/src/Terminal/ui/TerminalActionTimer.tsx

12 lines
357 B
TypeScript
Raw Normal View History

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 <Typography color="primary">{Terminal.action && Terminal.getProgressText()}</Typography>;
}