12345678910111213141516 |
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import IssueListContainer from 'sentry/views/issueList';
- import IssueListOverview from 'sentry/views/issueList/overview';
- type OverviewWrapperProps = RouteComponentProps<
- Record<PropertyKey, string | undefined>,
- {searchId?: string}
- >;
- export function OverviewWrapper(props: OverviewWrapperProps) {
- return (
- <IssueListContainer>
- <IssueListOverview {...props} />
- </IssueListContainer>
- );
- }
|