import { Link } from "react-router-dom"; import styles from "./studyplan.module.scss"; const PlanLineList = ({ subjectId, planList = [] }) => { return ( {planList.length !== 0 ? planList.map(plan =>

- {plan.title}

) :

새로운 계획 추가하기

} ) } export default PlanLineList