From 8aa174e70c01631ae4e00a6d208966fcd77cf972 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 10 Jul 2020 10:21:46 +0200 Subject: Add implementation of portfolio and scenario UI structure --- .../experiments/ExperimentRowComponent.js | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 frontend/src/components/experiments/ExperimentRowComponent.js (limited to 'frontend/src/components/experiments/ExperimentRowComponent.js') diff --git a/frontend/src/components/experiments/ExperimentRowComponent.js b/frontend/src/components/experiments/ExperimentRowComponent.js deleted file mode 100644 index c6ae1ba4..00000000 --- a/frontend/src/components/experiments/ExperimentRowComponent.js +++ /dev/null @@ -1,36 +0,0 @@ -import PropTypes from 'prop-types' -import React from 'react' -import { Link } from 'react-router-dom' -import Shapes from '../../shapes/index' - -const ExperimentRowComponent = ({ experiment, projectId, onDelete }) => ( - - {experiment.name} - {experiment.topology.name} - {experiment.trace.name} - {experiment.scheduler.name} - - - - -
onDelete(experiment._id)} - > - -
- - -) - -ExperimentRowComponent.propTypes = { - experiment: Shapes.Experiment.isRequired, - projectId: PropTypes.string.isRequired, -} - -export default ExperimentRowComponent -- cgit v1.2.3