StudyPlanEditPage.js 927 Bytes
Newer Older
1
2
const StudyPlanEditPage = () => {
    return (
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
        <>
            <select className="form-select" aria-label="Default select example">
                <option selected>관련 과목을 선택해주세요.</option>
                <option value="1">운영체제</option>
                <option value="2">네트워크 프로그래밍  실습</option>
                <option value="3">수학적 모델링</option>
            </select>
            <input type="text" name="studyplanTitle"
                className="form-control border-top-0 border-end-0 border-start-0"
                style={{ boxShadow: "none", borderRadius: "0" }}
                placeholder="제목" />
            <label className="form-label m-2">마감일 </label>
            <input type="date" value="2021-10-12" className="" />
            <input type="time" value="00:00" className="" />
        </>
18
19
20
21
    )
}

export default StudyPlanEditPage