function DatesSection(){ const sep=["Sep-24-2026","Sep-25-2026","Sep-26-2026","Sep-27-2026"]; const oct=["Oct-22-2026","Oct-23-2026","Oct-24-2026","Oct-25-2026"]; const Col=({heading,dates,divider})=>(
{heading}
{dates.map((d,i)=>(
{d}
))}
); return(

Course Dates to Keep in Mind

); } window.DatesSection=DatesSection;