Refactored frontend
This commit is contained in:
parent
37613e4de1
commit
6386294887
24 changed files with 54 additions and 529 deletions
14
dev/runner/JobDisplay.jsx
Normal file
14
dev/runner/JobDisplay.jsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue