mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-29 04:03:35 -05:00
24 lines
350 B
JavaScript
24 lines
350 B
JavaScript
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;
|