mirror of
https://github.com/ansible/awx.git
synced 2026-03-20 02:17:37 -02:30
Reorganize file locations/directory structure (#270)
Reorganize file locations
This commit is contained in:
28
src/screens/SystemSetting/SystemSettings.jsx
Normal file
28
src/screens/SystemSetting/SystemSettings.jsx
Normal file
@@ -0,0 +1,28 @@
|
||||
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 SystemSettings extends Component {
|
||||
render () {
|
||||
const { i18n } = this.props;
|
||||
const { light, medium } = PageSectionVariants;
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<PageSection variant={light} className="pf-m-condensed">
|
||||
<Title size="2xl">
|
||||
{i18n._(t`System Settings`)}
|
||||
</Title>
|
||||
</PageSection>
|
||||
<PageSection variant={medium} />
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default withI18n()(SystemSettings);
|
||||
Reference in New Issue
Block a user