/** 화면 우하단 탐색 막대 (줌 표시·전체 보기) */ import type { FC } from 'react'; import { runCommandInput } from '../commands/run-command'; import { getScreenCanvasDrawController } from '../state'; export const ViewControls: FC = () => { const zoom = getScreenCanvasDrawController()?.getScreenScale() ?? 1; return (
{Math.round(zoom * 100)}%
); };