import type {RouteComponentProps} from 'react-router'; import Feature from 'sentry/components/acl/feature'; import type {Organization} from 'sentry/types/organization'; import type {Project} from 'sentry/types/project'; import ProjectPerformance from './projectPerformance'; type Props = RouteComponentProps<{projectId: string}, {}> & { organization: Organization; project: Project; }; function ProjectPerformanceContainer(props: Props) { return ( ); } export default ProjectPerformanceContainer;