index.tsx 388 B

12345678910111213141516171819
  1. import * as React from 'react';
  2. import {RouteComponentProps} from 'react-router';
  3. import {Organization} from 'app/types';
  4. type RouteParams = {
  5. orgId: string;
  6. };
  7. type Props = RouteComponentProps<RouteParams, {}> & {
  8. organization: Organization;
  9. children: React.ReactNode;
  10. };
  11. function ReleasesContainer(props: Props) {
  12. return props.children;
  13. }
  14. export default ReleasesContainer;