import ProjectAvatar from 'sentry/components/avatar/projectAvatar'; import { CrumbContainer, EventDrawerBody, EventDrawerContainer, EventDrawerHeader, EventNavigator, Header, NavigationCrumbs, ShortId, } from 'sentry/components/events/eventDrawer'; import {t} from 'sentry/locale'; import type {Group} from 'sentry/types/group'; import type {Project} from 'sentry/types/project'; import StreamlinedActivitySection from 'sentry/views/issueDetails/streamline/activitySection'; interface ActivityDrawerProps { group: Group; project: Project; } export function ActivityDrawer({group, project}: ActivityDrawerProps) { return ( {group.shortId} ), }, {label: t('Activity')}, ]} />
{t('Activity')}
); }