feat: Add floor plan page and component
This commit is contained in:
parent
4c7432dc12
commit
2852e5eb1d
5
src/app/[locale]/floor-plan/page.jsx
Normal file
5
src/app/[locale]/floor-plan/page.jsx
Normal file
@ -0,0 +1,5 @@
|
||||
import FloorPlan from '@/components/floor-plan/FloorPlan'
|
||||
|
||||
export default function floorPlanPage() {
|
||||
return <FloorPlan />
|
||||
}
|
||||
7
src/components/floor-plan/FloorPlan.jsx
Normal file
7
src/components/floor-plan/FloorPlan.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
export default function FloorPlan() {
|
||||
return (
|
||||
<>
|
||||
<h1>도면 작성 페이지</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user