mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-30 11:51:48 -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;
|
||||
4
src/pages/Jobs/JobOutput/index.js
Normal file
4
src/pages/Jobs/JobOutput/index.js
Normal file
@@ -0,0 +1,4 @@
|
||||
import JobOutput from './JobOutput';
|
||||
|
||||
export default JobOutput;
|
||||
|
||||
Reference in New Issue
Block a user