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