mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 04:00:06 -03:30
29 lines
674 B
JavaScript
29 lines
674 B
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import { withI18n } from '@lingui/react';
|
|
import { t } from '@lingui/macro';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
class ManagementJobs extends Component {
|
|
render() {
|
|
const { i18n } = this.props;
|
|
const { light } = PageSectionVariants;
|
|
|
|
return (
|
|
<Fragment>
|
|
<PageSection variant={light} className="pf-m-condensed">
|
|
<Title size="2xl" headingLevel="h2">
|
|
{i18n._(t`Management Jobs`)}
|
|
</Title>
|
|
</PageSection>
|
|
<PageSection />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withI18n()(ManagementJobs);
|