awx/src/pages/NotificationTemplates.jsx
2018-10-11 22:48:39 -04:00

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;