const Timeline = () => { const data = [ { id: 1, school: "Sarasas Witaed Minburi School", period: "Pre-Kindergarden - 4th Grade", date: "2009 - 2016" }, { id: 2, school: "Sarasas Witaed Romklao International Programme", period: "4th Grade - 6th Grade", date: "2016 - 2019" }, { id: 3, school: "Homeschooling with Wolsey Hall Oxford, England", period: "7th Grade - 9th Grade", date: "2019 - 2022" }, { id: 4, school: "Rugby School Thailand", period: "9th Grade - Present (10th Grade)", date: "Present" } ] return (
{data.map(({ id, school, period, date }) => (
{school}

{period}
))}
); } export default Timeline;