import React from "react"; import PropTypes from "prop-types"; import { Map } from "immutable"; import { useDispatch } from "react-redux"; import { isWishlisted } from "../../../utils"; import { showWishlistToggle } from "../../../actions/shows"; import { Plot } from "../../details/plot"; import { Rating } from "../../details/rating"; import { ReleaseDate } from "../../details/releaseDate"; import { Title } from "../../details/title"; import { TrackingLabel } from "../../details/tracking"; import { ImdbBadge } from "../../buttons/imdb"; export const Header = (props) => { const dispatch = useDispatch(); return (