draft custom door

This commit is contained in:
wass08
2026-02-25 13:28:42 +09:00
parent d9317bfba2
commit 27e4afb757
25 changed files with 1661 additions and 14 deletions
@@ -9,6 +9,7 @@ import { ReferencePanel } from './reference-panel'
import { RoofPanel } from './roof-panel'
import { SlabPanel } from './slab-panel'
import { WallPanel } from './wall-panel'
import { DoorPanel } from './door-panel'
import { WindowPanel } from './window-panel'
export function PanelManager() {
@@ -37,6 +38,8 @@ export function PanelManager() {
return <CeilingPanel />
case 'wall':
return <WallPanel />
case 'door':
return <DoorPanel />
case 'window':
return <WindowPanel />
}