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

d-flex col-6 적용

parent eba5b165
const TimeTable = () => {
return (
<>
</>
<div className="col-6">
</div>
)
}
......
......@@ -5,7 +5,7 @@ const TimeTableEdit = () => {
return (
<>
<h2 className="border-bottom border-2 text-center pb-2 me-2">현재 상영시간표 정보</h2>
<div>
<div className="d-flex">
<TimeTableEditForm />
<TimeTable />
</div>
......
......@@ -145,7 +145,7 @@ const TimeTableEditForm = () => {
}
return (
<form onSubmit={handleSubmit}>
<form className="col-6" onSubmit={handleSubmit}>
<select className={`form-select mb-3 ${styles.shadowNone} ${styles.selectInput}`} id="movieId" name="movieId" value={selectId} onChange={handleChange} aria-label="select movie" defaultValue="0">
{movieList.length !== 0 ?
movieList.map((movie, index) => {
......
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