// Festivals side panel const FestivalsPanel = ({ festivals, run_date }) => { const run_date_obj = new Date(run_date); const fmtName = (col) => col.replace(/_/g, ' ').replace(/\b\w/g, c => c.toUpperCase()); return (

Festivals in Range

{festivals.length}
{festivals.length === 0 ? (

No festivals in next 30 days

) : ( )}
); }; window.FestivalsPanel = FestivalsPanel;