import PropTypes from 'prop-types'; import React from 'react'; import { kinds } from 'Helpers/Props'; import Label from 'Components/Label'; import styles from './ImportSeriesTitle.css'; function ImportSeriesTitle(props) { const { title, year, network, isExistingSeries } = props; return (
{title} { !title.contains(year) && ({year}) }
{ !!network && } { isExistingSeries && }
); } ImportSeriesTitle.propTypes = { title: PropTypes.string.isRequired, year: PropTypes.number.isRequired, network: PropTypes.string, isExistingSeries: PropTypes.bool.isRequired }; export default ImportSeriesTitle;