// @flow import ChangesetRow from "./ChangesetRow"; import React from "react"; import type { Changeset, Repository } from "../../../../../scm-ui-components/packages/ui-types/src/index"; import classNames from "classnames"; type Props = { repository: Repository, changesets: Changeset[] }; class ChangesetList extends React.Component { render() { const { repository, changesets } = this.props; const content = changesets.map((changeset, index) => { return ; }); return
{content}
; } } export default ChangesetList;