import React from 'react'; import PropTypes from 'prop-types'; import style from './TitleCard.module.scss'; export default function TitleCard(props) { const { label, title, subtitle, presenter } = props; return ( <>
{label}
{title}
{presenter}
{subtitle}
); } TitleCard.propTypes = { label: PropTypes.string, title: PropTypes.string, subtitle: PropTypes.string, presenter: PropTypes.string, }