mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
27 lines
601 B
JavaScript
27 lines
601 B
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import { Trans } from '@lingui/macro';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
class SystemSettings extends Component {
|
|
render () {
|
|
const { light, medium } = PageSectionVariants;
|
|
|
|
return (
|
|
<Fragment>
|
|
<PageSection variant={light} className="pf-m-condensed">
|
|
<Title size="2xl">
|
|
<Trans>System Settings</Trans>
|
|
</Title>
|
|
</PageSection>
|
|
<PageSection variant={medium} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default SystemSettings;
|