Commit cf42430e authored by Kim, Subin's avatar Kim, Subin
Browse files

세부사항 수정

parent c50454cd
......@@ -23,7 +23,7 @@ function App() {
<Route path="/signup" component={SignupPage} />
<Route path="/home" component={HomePage} />
<Route path="/schedule/edit" component={ScheduleEditPage} />
<Route path="/schedule" component={SchedulePage} />
<Route path="/schedule/:date" component={SchedulePage} />
<Route path="/todo" component={ToDoPage} />
<Route path="/studyplan/edit" component={StudyPlanEditPage} />
<Route path="/studyplan/:" component={StudyPlanPage} />
......
......@@ -3,7 +3,7 @@ import styles from "./modal.module.scss";
const ScheduleModal = () => {
return (
<div className="modal" id="scheduleModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="scheduleModalLabel" aria-hidden="true">
<div className="modal" id="scheduleModal" data-bs-backdrop="static" data-bs-keyboard="false" tabIndex="-1" aria-labelledby="scheduleModalLabel" aria-hidden="true">
<div className="modal-dialog modal-sm modal-dialog-centered modal-dialog-scrollable">
<div className="modal-content">
<div className={`modal-header ${styles.header}`}>
......
import React from 'react';
import LoginForm from '../components/Form/LoginForm';
function LoginPage() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment