| File was renamed from borgbutler-webapp/src/components/views/repos/RepoArchiveList.jsx |
| | |
| | | import ErrorAlert from '../../general/ErrorAlert'; |
| | | import {IconRefresh} from "../../general/IconComponents"; |
| | | |
| | | class RepoListView extends React.Component { |
| | | class RepoArchiveListView extends React.Component { |
| | | |
| | | |
| | | path = getRestServiceUrl('repos'); |
| | |
| | | > |
| | | <IconRefresh/> |
| | | </div> |
| | | <CardDeck> |
| | | {this.state.repos.map(repo => { |
| | | return <RepoCard |
| | | key={repo.id} |
| | | repo={repo} |
| | | />; |
| | | })} |
| | | </CardDeck> |
| | | </React.Fragment>; |
| | | |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | export default RepoListView; |
| | | export default RepoArchiveListView; |