feat: Add floor plan page and component

This commit is contained in:
yoosangwook 2024-09-09 10:10:13 +09:00
parent 4c7432dc12
commit 2852e5eb1d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import FloorPlan from '@/components/floor-plan/FloorPlan'
export default function floorPlanPage() {
return <FloorPlan />
}

View File

@ -0,0 +1,7 @@
export default function FloorPlan() {
return (
<>
<h1>도면 작성 페이지</h1>
</>
)
}