import {Fragment} from 'react'; import styled from '@emotion/styled'; import {t} from 'sentry/locale'; import type {PlatformKey} from 'sentry/types'; import {IntegrationProvider} from 'sentry/types'; type Props = { provider: IntegrationProvider; isOnboarding?: boolean; platform?: PlatformKey; }; export default function PostInstallCodeSnippet({ provider, platform, isOnboarding, }: Props) { // currently supporting both Python and Node const token_punctuation: string = platform === 'python-awslambda' ? '()' : '();'; return (
{t( "Congrats, you just installed the %s integration! Now that it's is installed, the next time you trigger an error it will go to your Sentry.", provider.name )}
{t( 'This snippet includes an intentional error, so you can test that everything is working as soon as you set it up:' )}
myUndefinedFunction
{token_punctuation} )
{t( "If you're new to Sentry, use the email alert to access your account and complete a product tour." )}
{t( "If you're an existing user and have disabled alerts, you won't receive this email." )}