mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
22 lines
497 B
JavaScript
22 lines
497 B
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
class NotificationTemplates extends Component {
|
|
render () {
|
|
const { light, medium } = PageSectionVariants;
|
|
|
|
return (
|
|
<Fragment>
|
|
<PageSection variant={light}><Title size="2xl">Notification Templates</Title></PageSection>
|
|
<PageSection variant={medium} />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default NotificationTemplates;
|