Wisani Shilumani 168ce4c84e PR comments
2018-07-16 09:22:42 +02:00

36 lines
879 B
JavaScript

import React from 'react';
import { PropTypes } from 'prop-types';
import './style.scss';
const RelatedInterviewsList = (props) => {
if (!props.data || props.data[0] === null) {
return <div>Loading...</div>;
} else if (props.data.length < 1) {
return <div>No results found</div>;
}
return (
<div className="related-interviews-list">
<h4>Related <br />Interviews</h4>
<ul>
{ props.data.map(interview => (
<li
id={interview.id}
key={interview.id}
>
<button onClick={props.toggleSingleInterview}>{ interview.name }</button>
</li>
))
}
</ul>
</div>
);
};
RelatedInterviewsList.propTypes = {
data: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
toggleSingleInterview: PropTypes.func.isRequired,
};
export default RelatedInterviewsList;