import React, { useState, useEffect } from 'react'; import Menu from '../Components/Menu'; import Calendar from '../Components/Calendar'; import styled from 'styled-components'; const Drop = styled.div` & button { border solid 1px; } ` const Schedule = styled.div` & ul { list-style-type: none; } & .cd-schedule__events { width: 100%; > ul { display: flex; flex-wrap: nowrap; } & .cd-schedule__timeline { > ul { line-height: 1em; } } & .cd-schedule__group { flex-basis: 0; flex-grow: 1; } & .cd-schedule__event { position: absolute; z-index: 3; width: calc(100% + 2px); // top position and height will be set using js left: -1px; } ` function Home() { const [click, setState] = useState(); return (

대관 현황

대관 가능 시간

  • 평일: 9시 - 22시/ 예약가능 시간 이후 폐쇄
  • 주말: 이용 불가

10 / 5 ~ 10 / 9 10 / 12 ~ 10 / 16 10 / 19 ~ 10 / 23
{/*
*/}
) } export default Home;