From b4bdf9fde013bb7ff9579693b64ff575f7b00e44 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Tue, 7 Jul 2020 09:55:10 +0200 Subject: Rename simulations to projects and remove experiment view --- .../components/simulations/SimulationAuthList.js | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 frontend/src/components/simulations/SimulationAuthList.js (limited to 'frontend/src/components/simulations/SimulationAuthList.js') diff --git a/frontend/src/components/simulations/SimulationAuthList.js b/frontend/src/components/simulations/SimulationAuthList.js deleted file mode 100644 index c760d08f..00000000 --- a/frontend/src/components/simulations/SimulationAuthList.js +++ /dev/null @@ -1,43 +0,0 @@ -import PropTypes from 'prop-types' -import React from 'react' -import Shapes from '../../shapes/index' -import SimulationAuthRow from './SimulationAuthRow' - -const SimulationAuthList = ({ authorizations }) => { - return ( -
- {authorizations.length === 0 ? ( -
- - No simulations here yet... Add some with the 'New - Simulation' button! -
- ) : ( - - - - - - - - - - {authorizations.map(authorization => ( - - ))} - -
Simulation nameLast editedAccess rights -
- )} -
- ) -} - -SimulationAuthList.propTypes = { - authorizations: PropTypes.arrayOf(Shapes.Authorization).isRequired, -} - -export default SimulationAuthList -- cgit v1.2.3