import type { Education } from "./types";
 
export const education: Education[] = [
{
school:"한림대학교",
degree:"경제학과 졸업",
date:"2020.02",
},
{
school:"코드캠프",
degree:"개발자 양성 부트캠프 수료",
date:"2021.11",
points:[
JavaScript, React, Next.js 기반 웹 개발 집중 교육
팀 프로젝트를 통한 실전 서비스 설계 및 배포 경험
],
},
];