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