index.tsx 929 B

1234567891011121314151617181920212223242526272829
  1. import type {RouteComponentProps} from 'react-router';
  2. import type {Event} from 'sentry/types/event';
  3. import type {Group} from 'sentry/types/group';
  4. import type {Organization} from 'sentry/types/organization';
  5. import type {Project} from 'sentry/types/project';
  6. import withOrganization from 'sentry/utils/withOrganization';
  7. import type {ReprocessingStatus} from '../utils';
  8. import GroupEventDetails from './groupEventDetails';
  9. export interface GroupEventDetailsProps
  10. extends RouteComponentProps<{groupId: string; eventId?: string}, {}> {
  11. event: Event;
  12. eventError: boolean;
  13. group: Group;
  14. groupReprocessingStatus: ReprocessingStatus;
  15. loadingEvent: boolean;
  16. onRetry: () => void;
  17. organization: Organization;
  18. project: Project;
  19. }
  20. export function GroupEventDetailsContainer(props: GroupEventDetailsProps) {
  21. return <GroupEventDetails {...props} />;
  22. }
  23. export default withOrganization(GroupEventDetailsContainer);