import ExternalLink from 'sentry/components/links/externalLink'; import OnboardingPanel from 'sentry/components/onboardingPanel'; import {t, tct} from 'sentry/locale'; import type {Monitor} from '../types'; import MonitorQuickStartGuide from './monitorQuickStartGuide'; interface Props { monitor: Monitor; } function MonitorOnboarding({monitor}: Props) { return (

{t('Instrument your monitor')}

{tct( 'Select an integration method for your new monitor. For in-depth instructions on integrating Crons, view [docsLink:our complete documentation].', { docsLink: ( ), } )}

); } export default MonitorOnboarding;