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

CinemaEdit & TheaterEdit

parent 68e604fa
const CinemaEdit = () => {
function handleChange(e) {
const { name, value } = e.target
console.log("name=",name,"value=",value)
}
return (
<>
<h2 className="border-bottom border-2 text-center pb-2 me-2">현재 영화관 정보</h2>
<input type="text" className="form-control" id="cinema" name="cinema" onChange={handleChange} />
<p> 상영관 : 8개관 | 좌석 : 1,282</p>
<div className="mb-3">
<label for="transportation" className="form-label">대중교통 안내</label>
<textarea className="form-control" id="transportation" name="transportation" onChange={handleChange}></textarea>
</div>
<div className="mb-3">
<label for="parking" className="form-label">자가용/주차 안내</label>
<textarea className="form-control" id="parking" name="parking" onChange={handleChange}></textarea>
</div>
</>
)
}
export default CinemaEdit
\ No newline at end of file
const TheaterEdit = () => {
return (
<div>
</div>
)
}
export default TheaterEdit
\ No newline at end of file
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