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 ProjectMetrics from './projectMetrics'; type Props = RouteComponentProps<{projectId: string}, {}> & { organization: Organization; project: Project; }; function ProjectMetricsContainer(props: Props) { return ( ); } export default ProjectMetricsContainer;