mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
22 lines
475 B
JavaScript
22 lines
475 B
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
class Users extends Component {
|
|
render () {
|
|
const { light, medium } = PageSectionVariants;
|
|
|
|
return (
|
|
<Fragment>
|
|
<PageSection variant={light} className="pf-m-condensed"><Title size="2xl">Users</Title></PageSection>
|
|
<PageSection variant={medium} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Users;
|