mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-21 00:03:35 -05:00
22 lines
469 B
JavaScript
22 lines
469 B
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
class Applications extends Component {
|
|
render () {
|
|
const { light, medium } = PageSectionVariants;
|
|
|
|
return (
|
|
<Fragment>
|
|
<PageSection variant={light}><Title size="2xl">Applications</Title></PageSection>
|
|
<PageSection variant={medium} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Applications;
|