/** 제목표시줄 + 빠른 실행 도구막대 (AutoCAD 상단 막대) */ import type { FC } from 'react'; import { getCommandById } from '../commands/registry'; import { runCommand } from '../commands/run-command'; import { QUICK_ACCESS_COMMANDS } from '../ribbon/ribbon.config'; export const QuickAccessBar: FC = () => (
Aislo CAD B07 상세 설계
{QUICK_ACCESS_COMMANDS.map((id) => { const command = getCommandById(id); if (!command) return null; return ( ); })}
현재 도면
);