kcg-monitoring/frontend/src/gearParentFlowMain.tsx
htlee e11caf2767 feat: 어구 모선 추적 흐름도 시각화 (React Flow) 추가
- GearParentFlowViewer: React Flow 기반 인터랙티브 흐름도
- gear-parent-flow.html: standalone entry point
- vite.config.ts: multi-entry 빌드 (main + gearParentFlow)
- App.tsx: FLOW 링크 추가
- @xyflow/react 의존성 추가

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 01:19:21 +09:00

15 lines
441 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import '@fontsource-variable/inter';
import '@fontsource-variable/noto-sans-kr';
import '@fontsource-variable/fira-code';
import './styles/tailwind.css';
import './index.css';
import GearParentFlowViewer from './flow/GearParentFlowViewer';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<GearParentFlowViewer />
</StrictMode>,
);