mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-04 16:01:51 -05:00
Add Job results skeleton
This commit is contained in:
23
src/pages/Jobs/JobOutput/JobOutput.jsx
Normal file
23
src/pages/Jobs/JobOutput/JobOutput.jsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import React, { Component } from 'react';
|
||||
import { CardBody } from '@patternfly/react-core';
|
||||
|
||||
|
||||
class JobOutput extends Component {
|
||||
constructor (props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render () {
|
||||
const {
|
||||
job
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
<CardBody>
|
||||
<b>{job.name}</b>
|
||||
</CardBody>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default JobOutput;
|
||||
Reference in New Issue
Block a user