Skip to content

Commit 19ba437

Browse files
authored
feat: 리뷰 홈 레이아웃 추가 (#146)
* feat: 리뷰 작성 API에 맞춰 명세 변경 * feat: 리뷰 홈 레이아웃 * chore: lint
1 parent 956043d commit 19ba437

File tree

16 files changed

+672
-109
lines changed

16 files changed

+672
-109
lines changed

src/app/(root)/(routes)/review/explore/page.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
import { Suspense } from 'react'
12
import type { Metadata } from 'next'
2-
import { ConstructionPage } from '@/components/pages/common'
3+
import { Explore } from '@/components/(pages)/review/explore/Explore'
34

45
export const metadata: Metadata = {
56
title: '후기 탐색',
@@ -20,5 +21,9 @@ export const metadata: Metadata = {
2021
}
2122

2223
export default function Page() {
23-
return <ConstructionPage />
24+
return (
25+
<Suspense fallback={null}>
26+
<Explore />
27+
</Suspense>
28+
)
2429
}

0 commit comments

Comments
 (0)