import styled from '@emotion/styled'; import Button from 'sentry/components/button'; import PageAlertBar from 'sentry/components/pageAlertBar'; import {IconLightning} from 'sentry/icons'; import {t} from 'sentry/locale'; import space from 'sentry/styles/space'; import {AvatarProject, Organization} from 'sentry/types'; import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent'; function SampleEventAlert({ organization, project, }: { organization: Organization; project: AvatarProject; }) { return ( {t( 'You are viewing a sample error. Configure Sentry to start viewing real errors.' )} ); } export default SampleEventAlert; const TextWrapper = styled('span')` margin: 0 ${space(1)}; `;