Replit Commit

This commit is contained in:
Dunemask 2022-05-05 12:35:47 +00:00
commit f49f965a42
41 changed files with 32720 additions and 0 deletions

14
src/runner/JobDisplay.jsx Normal file
View file

@ -0,0 +1,14 @@
function jobDisplay({ props }) {
return (
<div className="job">
<h2>Job ID: {props.job.id}</h2>
<h3>Log: </h3>
{props.job.log.map((l, i) => (
<div className="line" key={i}>
{l}
<br />
</div>
))}
</div>
);
}