Skip to content

Commit

Permalink
feat: 종합시간표 UI 개발 - #9
Browse files Browse the repository at this point in the history
  • Loading branch information
abi-hong committed Nov 16, 2023
1 parent 23910ec commit 1635d74
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
4 changes: 4 additions & 0 deletions hooks/owner/useConfirmAvailableTime.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

export const useConfirmAvailableTime = () => {

}
17 changes: 16 additions & 1 deletion pages/enter/confirm/components/SetEntireAvailableTimeTable.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
import React from 'react'
import styled from "styled-components"
import TitleComponent from '../../../../components/modules/TitleComponent'
import TimeTable from '../../../../components/modules/TimeTable'

export default function SetEntireAvailableTimeTable() {
return(
<div>종합 일정 시간표 페이지</div>
<Styled.EntireAvailableWrapper>
<TitleComponent title={'현재까지 12명이 입력했어요.'} subTitle={'홍희수, 김민지'}/>
<TimeTable/>
</Styled.EntireAvailableWrapper>
)
}

const Styled = {
EntireAvailableWrapper: styled.div`
`,

}

0 comments on commit 1635d74

Please sign in to comment.