summaryrefslogtreecommitdiff
path: root/src/components/projects/NewProjectButton.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-08-16 22:55:16 +0300
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:42 +0200
commit07195f3762b6a8a7dfb44c2231db58c5be13c43f (patch)
tree2b4640457f70b55a97aff22fbe617e4b8538464a /src/components/projects/NewProjectButton.js
parent91c8088e1d7def9242f60c708cd34f25dcb77d76 (diff)
Rename project to sim and enable sim-adding
Diffstat (limited to 'src/components/projects/NewProjectButton.js')
-rw-r--r--src/components/projects/NewProjectButton.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/components/projects/NewProjectButton.js b/src/components/projects/NewProjectButton.js
deleted file mode 100644
index 9eaf6df4..00000000
--- a/src/components/projects/NewProjectButton.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import PropTypes from 'prop-types';
-import React from 'react';
-import './NewProjectButton.css';
-
-const NewProjectButton = ({onClick}) => (
- <div className="new-project-btn" onClick={onClick}>
- <span className="fa fa-plus"/>
- New Project
- </div>
-);
-
-NewProjectButton.propTypes = {
- onClick: PropTypes.func.isRequired,
-};
-
-export default NewProjectButton;