StudyPlanList.js 805 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Link } from "react-router-dom";
import StudyPlanCard  from "./Card/StudyPlanCard.js";

const StudyPlanList = () => {
  return (
    <>
      <div>
        <StudyPlanCard />
      </div>
      <div className="d-flex justify-content-center mt-3">
        <Link className="text-decoration-none link-dark" to="/subject/edit" style={{ width: "20rem" }}>
          <div className="card">
            <div className="card-body d-flex flex-column bg-secondary bg-opacity-25 ">
              <div>
Choi Ga Young's avatar
Choi Ga Young committed
15
                <i className="bi bi-plus-lg d-flex justify-content-center fs-3"></i>
Choi Ga Young's avatar
Choi Ga Young committed
16
17
18
19
20
21
22
23
24
25
26
                <p className="card-text mt-2 text-center">새로운 과목 추가하기</p>
              </div>
            </div>
          </div>
        </Link>
      </div>
    </>
  )
}

export default StudyPlanList;