Skip to content

Commit 3932fe1

Browse files
committed
시간표 페이지 라우트 생성
1 parent 16df432 commit 3932fe1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react'
2+
import type { NextPage, GetServerSideProps } from 'next'
3+
import { useTranslation } from 'react-i18next'
4+
import { PageName } from '../../data/enums/PageName'
5+
import PageTitle from '../../components/core/PageTitle'
6+
import { PageProps } from '../../interfaces/PageProps'
7+
8+
const TalkSchedule: NextPage = (props: PageProps) => {
9+
const { t } = useTranslation()
10+
11+
return (
12+
<div>
13+
<PageTitle title={props.pageName} />
14+
{t('label:preparing')}
15+
</div>
16+
)
17+
}
18+
19+
export const getServerSideProps: GetServerSideProps = async () => {
20+
return {
21+
props: {
22+
title: PageName.TalkSchedule
23+
}
24+
}
25+
}
26+
27+
export default TalkSchedule

0 commit comments

Comments
 (0)