From 27284fa299948b577279e2253d29671d20f63529 Mon Sep 17 00:00:00 2001 From: Roosted7 <thomasroos@live.nl> Date: Wed, 21 Mar 2018 15:05:02 +0100 Subject: [PATCH] Remove unused old exam selecter component --- client/views/students/ExamSelector.jsx | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 client/views/students/ExamSelector.jsx diff --git a/client/views/students/ExamSelector.jsx b/client/views/students/ExamSelector.jsx deleted file mode 100644 index 29d3b9d2f..000000000 --- a/client/views/students/ExamSelector.jsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react'; - -const ExamSelector = (props) => ( - <div className="control has-icons-left"> - <div className="select is-info is-fullwidth"> - <select value={props.exam.name} onChange={props.selectExam}> - {props.exam.list.map(ex => - <option key={ex.id}>{ex.name}</option> - )} - </select> - </div> - <span className="icon is-small is-left"> - <i className="fa fa-pencil"></i> - </span> - </div> -) - -export default ExamSelector; \ No newline at end of file -- GitLab