File size: 737 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import React from 'react';
import { Link } from 'react-router-dom';
import PropTypes from 'prop-types';
import './MovieThumb.css';
const MovieThumb = ({ image, movieId, movieName, clickable }) => (
<div className="rmdb-moviethumb">
{/* You can send props via the Links "to" object. Here we create our own "movieName" */}
{clickable ?
<Link to={{ pathname: `/${movieId}`, movieName: `${movieName}`}}>
<img className="clickable" src={image} alt="moviethumb" />
</Link>
:
<img src={image} alt="moviethumb" />
}
</div>
)
MovieThumb.propTypes = {
image: PropTypes.string,
movieId: PropTypes.number,
movieName: PropTypes.string,
clickable: PropTypes.bool
}
export default MovieThumb; |