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 type {AvatarProject, Organization} from 'sentry/types'; import {trackAnalytics} from 'sentry/utils/analytics'; 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)}; `;