mirror of
https://github.com/ansible/awx.git
synced 2026-02-21 21:20:08 -03:30
29 lines
654 B
JavaScript
29 lines
654 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 Users 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`Users`)}
|
|
</Title>
|
|
</PageSection>
|
|
<PageSection variant={medium} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withI18n()(Users);
|