import React from "react";
import PropTypes from "prop-types";
export const Poster = ({ thumb, fanart }) => {
if (thumb === "" && fanart === "") {
return null;
}
return (
{thumb !== "" && (

)}
{fanart !== "" && (

)}
);
};
Poster.propTypes = {
thumb: PropTypes.string,
fanart: PropTypes.string,
};
Poster.defaultProps = {
thumb: "",
fanart: "",
};