import React from 'react'; import { IMAGE_BASE_URL } from '../../../config'; import PropTypes from 'prop-types'; import './Actor.css'; const Actor = ({ actor }) => { const POSTER_SIZE = "w154"; return (
actorthumb {actor.name} {actor.character}
) } Actor.propTypes = { actor: PropTypes.object } export default Actor;