import './TitleCard.scss'; interface TitleCardProps { label: 'now' | 'next'; title: string; subtitle: string; presenter: string; } export default function TitleCard(props: TitleCardProps) { const { label, title, subtitle, presenter } = props; const accent = label === 'now'; return (
{presenter} {label}
{title}
{subtitle}
); }