summaryrefslogtreecommitdiff
path: root/src/components/simulations/NewSimulationButton.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/simulations/NewSimulationButton.js')
-rw-r--r--src/components/simulations/NewSimulationButton.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/components/simulations/NewSimulationButton.js b/src/components/simulations/NewSimulationButton.js
deleted file mode 100644
index 468f7678..00000000
--- a/src/components/simulations/NewSimulationButton.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import PropTypes from 'prop-types';
-import React from 'react';
-import './NewSimulationButton.css';
-
-const NewSimulationButton = ({onClick}) => (
- <div className="new-simulation-btn" onClick={onClick}>
- <span className="fa fa-plus"/>
- New Simulation
- </div>
-);
-
-NewSimulationButton.propTypes = {
- onClick: PropTypes.func.isRequired,
-};
-
-export default NewSimulationButton;