You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
393 B
JavaScript

"use strict";
const React = require("react");
let boxStyle = {
position: "fixed",
right: "16px",
top: "16px",
borderRadius: "5px",
overflow: "hidden",
fontFamily: "sans-serif",
fontSize: "14px",
background: "rgb(11, 126, 11)",
color: "white",
padding: ".6em 1em"
};
module.exports = function Running() {
return (
<div style={boxStyle}>
Re-running process...
</div>
);
};