setupAlertIntegrationModal.tsx 426 B

12345678910111213141516
  1. import {Fragment} from 'react';
  2. import type {ModalRenderProps} from 'sentry/actionCreators/modal';
  3. function SetupAlertIntegrationModal({Header, Body}: ModalRenderProps) {
  4. return (
  5. <Fragment>
  6. <Header closeButton>Connect with a messaging tool</Header>
  7. <Body>
  8. <div>Receive alerts and digests right where you work.</div>
  9. </Body>
  10. </Fragment>
  11. );
  12. }
  13. export default SetupAlertIntegrationModal;