adjusting wall system + adding panel

This commit is contained in:
wass08
2026-02-18 13:35:12 +09:00
parent be013d26e5
commit 47373eadef
3 changed files with 116 additions and 7 deletions
@@ -8,6 +8,7 @@ import { ItemPanel } from './item-panel'
import { ReferencePanel } from './reference-panel'
import { RoofPanel } from './roof-panel'
import { SlabPanel } from './slab-panel'
import { WallPanel } from './wall-panel'
import { WindowPanel } from './window-panel'
export function PanelManager() {
@@ -34,6 +35,8 @@ export function PanelManager() {
return <SlabPanel />
case 'ceiling':
return <CeilingPanel />
case 'wall':
return <WallPanel />
case 'window':
return <WindowPanel />
}