import type {RouteComponentProps} from 'sentry/types/legacyReactRouter'; import type {Project} from 'sentry/types/project'; import {SourceMapsDetails} from './sourceMapsDetails'; import {SourceMapsList} from './sourceMapsList'; type Props = RouteComponentProps< { orgId: string; projectId: string; bundleId?: string; name?: string; }, {} > & { children: React.ReactNode; project: Project; }; export default function ProjectSourceMapsContainer({params, location, ...props}: Props) { if (params.bundleId) { return ( ); } return ( ); }