Skip to content
Snippets Groups Projects
Commit 27284fa2 authored by Thomas Roos's avatar Thomas Roos
Browse files

Remove unused old exam selecter component

parent 4a85a587
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment