From a1d95b3685cffb6a9344d0d1e5505dd391193f16 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 15 Sep 2017 12:53:26 +0200 Subject: Implement experiment list and add --- .../simulations/NewSimulationButtonComponent.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/components/simulations/NewSimulationButtonComponent.js (limited to 'src/components/simulations/NewSimulationButtonComponent.js') diff --git a/src/components/simulations/NewSimulationButtonComponent.js b/src/components/simulations/NewSimulationButtonComponent.js new file mode 100644 index 00000000..74036c1b --- /dev/null +++ b/src/components/simulations/NewSimulationButtonComponent.js @@ -0,0 +1,17 @@ +import PropTypes from 'prop-types'; +import React from 'react'; + +const NewSimulationButtonComponent = ({onClick}) => ( +
+
+ + New Simulation +
+
+); + +NewSimulationButtonComponent.propTypes = { + onClick: PropTypes.func.isRequired, +}; + +export default NewSimulationButtonComponent; -- cgit v1.2.3