index.tsx 482 B

12345678910111213141516
  1. import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
  2. import type {Organization} from 'sentry/types/organization';
  3. import type {Project} from 'sentry/types/project';
  4. import ProjectMetrics from './projectMetrics';
  5. type Props = RouteComponentProps<{projectId: string}, {}> & {
  6. organization: Organization;
  7. project: Project;
  8. };
  9. function ProjectMetricsContainer(props: Props) {
  10. return <ProjectMetrics {...props} />;
  11. }
  12. export default ProjectMetricsContainer;