/** 좌측 팔레트 — 특성(PROPERTIES)과 도면층 관리자 (AutoCAD 팔레트 자리) */ import type { FC } from 'react'; import { LayerManager } from './LayerManager'; import { PropertiesEditor } from './PropertiesEditor'; import { getInspectorTab, openInspector } from './ui-state'; import { getActiveLayerId, getLayers, setActiveLayerId, setLayers } from '../state'; interface InspectorPanelProps { collapsed: boolean; onToggleCollapsed: () => void; } export const InspectorPanel: FC = ({ collapsed, onToggleCollapsed }) => { const tab = getInspectorTab(); const layers = getLayers(); const activeLayerId = getActiveLayerId(); return ( ); };